-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sql): add down for hasura
display_date
property (#1462)
- Loading branch information
Showing
3 changed files
with
3 additions
and
12 deletions.
There are no files selected for viewing
5 changes: 1 addition & 4 deletions
5
...fault/1723964804960_alter_table_information_informations_add_column_display_date/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 |
---|---|---|
@@ -1,4 +1 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- alter table "information"."informations" add column "display_date" date | ||
-- null; | ||
alter table "information"."informations" drop column "display_date"; |
5 changes: 1 addition & 4 deletions
5
...s/default/1723964851942_alter_table_contribution_answers_add_column_display_date/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 |
---|---|---|
@@ -1,4 +1 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- alter table "contribution"."answers" add column "display_date" date | ||
-- null; | ||
alter table "contribution"."answers" drop column "display_date"; |
5 changes: 1 addition & 4 deletions
5
...igrations/default/1723964911747_alter_table_model_models_add_column_display_date/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 |
---|---|---|
@@ -1,4 +1 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- alter table "model"."models" add column "display_date" date | ||
-- null; | ||
alter table "model"."models" drop column "display_date"; |