Add on_budget column to accounts

This commit is contained in:
2021-12-07 20:52:53 +00:00
parent 915379f5cb
commit e3f3dc6748
3 changed files with 27 additions and 6 deletions

View File

@ -0,0 +1,5 @@
-- +goose Up
ALTER TABLE accounts ADD COLUMN on_budget boolean DEFAULT 'true' NOT NULL;
-- +goose Down
ALTER TABLE accounts DROP COLUMN on_budget;