-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove
has_planning_data
from team_settings table (#3314)
- Loading branch information
Showing
4 changed files
with
11 additions
and
18 deletions.
There are no files selected for viewing
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
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
4 changes: 4 additions & 0 deletions
4
...ons/1719307850258_alter_table_public_team_settings_drop_column_has_planning_data/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,4 @@ | ||
alter table "public"."team_settings" add column "has_planning_data" bool; | ||
comment on column "public"."team_settings"."has_planning_data" is E'Global settings for boundary and contact details'; | ||
alter table "public"."team_settings" alter column "has_planning_data" set default false; | ||
alter table "public"."team_settings" alter column "has_planning_data" drop not null; |
1 change: 1 addition & 0 deletions
1
...tions/1719307850258_alter_table_public_team_settings_drop_column_has_planning_data/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 @@ | ||
alter table "public"."team_settings" drop column "has_planning_data" cascade; |