diff --git a/postgres/schema/0016_closed-accounts.sql b/postgres/schema/0016_closed-accounts.sql new file mode 100644 index 0000000..daad799 --- /dev/null +++ b/postgres/schema/0016_closed-accounts.sql @@ -0,0 +1,5 @@ +-- +goose Up +ALTER TABLE accounts ADD COLUMN is_open BOOLEAN NOT NULL DEFAULT TRUE; + +-- +goose Down +ALTER TABLE accounts DROP COLUMN is_open; \ No newline at end of file