Skip to content

Commit

Permalink
Adding soft delete to gitspace_configs table (harness#2125)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv-harness authored and Harness committed Jun 19, 2024
1 parent a1b9512 commit 1b244fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
DROP COLUMN gconf_is_deleted;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
ADD COLUMN gconf_is_deleted BOOLEAN NOT NULL DEFAULT FALSE;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
DROP COLUMN gconf_is_deleted;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE gitspace_configs
ADD COLUMN gconf_is_deleted BOOLEAN NOT NULL DEFAULT FALSE;

0 comments on commit 1b244fe

Please sign in to comment.