Implement closing of accounts #36

Merged
jacob1123 merged 11 commits from closed-accounts into master 2022-03-02 22:54:02 +01:00
Showing only changes of commit 347a0c9e50 - Show all commits

View File

@ -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;