9 lines
293 B
SQL
9 lines
293 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE opendtu_hints ADD COLUMN IF NOT EXISTS pin_mapping_issue BOOLEAN NOT NULL DEFAULT FALSE;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE opendtu_hints DROP COLUMN IF EXISTS pin_mapping_issue;
|
|
-- +goose StatementEnd
|