added 'deleted' flags to all store objects (#262)

This commit is contained in:
Michael Quigley
2023-03-09 15:08:59 -05:00
parent 43d51a8f14
commit a0e94330c7
10 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,9 @@
-- +migrate Up
alter table account_requests add column deleted boolean not null default(false);
alter table accounts add column deleted boolean not null default(false);
alter table environments add column deleted boolean not null default(false);
alter table frontends add column deleted boolean not null default(false);
alter table invite_tokens add column deleted boolean not null default(false);
alter table password_reset_requests add column deleted boolean not null default(false);
alter table shares add column deleted boolean not null default(false);