mirror of
https://github.com/openziti/zrok.git
synced 2025-08-14 02:05:39 +02:00
added 'deleted' flags to all store objects (#262)
This commit is contained in:
9
controller/store/sql/sqlite3/008_v0_4_0_soft_deletes.sql
Normal file
9
controller/store/sql/sqlite3/008_v0_4_0_soft_deletes.sql
Normal 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);
|
Reference in New Issue
Block a user