Add on_budget column to accounts
This commit is contained in:
5
postgres/schema/202112072148_off-budget-accounts.sql
Normal file
5
postgres/schema/202112072148_off-budget-accounts.sql
Normal 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;
|
Reference in New Issue
Block a user