Adding soft delete to gitspace_configs table (#2125)

This commit is contained in:
Dhruv Dhruv 2024-06-19 08:42:41 +00:00 committed by Harness
parent a1b9512c59
commit 1b244fe624
4 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
DROP COLUMN gconf_is_deleted;

View File

@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
ADD COLUMN gconf_is_deleted BOOLEAN NOT NULL DEFAULT FALSE;

View File

@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
DROP COLUMN gconf_is_deleted;

View File

@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
ADD COLUMN gconf_is_deleted BOOLEAN NOT NULL DEFAULT FALSE;