Skip to content

Commit

Permalink
fix(sql): add down for hasura display_date property (#1462)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgfr authored Aug 22, 2024
1 parent 05a90c9 commit d24e4ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
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";
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";
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";

0 comments on commit d24e4ca

Please sign in to comment.