forked from harness/harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding soft delete to gitspace_configs table (harness#2125)
- Loading branch information
1 parent
a1b9512
commit 1b244fe
Showing
4 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
...tore/database/migrate/postgres/0056_alter_table_gitspace_configs_add_soft_delete.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE gitspace_configs | ||
DROP COLUMN gconf_is_deleted; |
2 changes: 2 additions & 0 deletions
2
app/store/database/migrate/postgres/0056_alter_table_gitspace_configs_add_soft_delete.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
2 changes: 2 additions & 0 deletions
2
app/store/database/migrate/sqlite/0056_alter_table_gitspace_configs_add_soft_delete.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE gitspace_configs | ||
DROP COLUMN gconf_is_deleted; |
2 changes: 2 additions & 0 deletions
2
app/store/database/migrate/sqlite/0056_alter_table_gitspace_configs_add_soft_delete.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |