mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
12 lines
281 B
SQL
12 lines
281 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE postgresql_databases
|
|
ADD COLUMN include_schemas TEXT NOT NULL DEFAULT '';
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE postgresql_databases
|
|
DROP COLUMN include_schemas;
|
|
-- +goose StatementEnd
|