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