Skip to content

Commit dd8869c

Browse files
committed
Fix migration rollback syntax for bye column drop
Remove invalid boolean type specifier from DROP COLUMN statement.
1 parent 403b2d2 commit dd8869c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • hasura/migrations/default/1756828494047_mutli_stage_tournaments
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
alter table "public"."tournament_teams" drop column if exists "created_at";
22
alter table "public"."tournament_stages" drop column if exists "groups";
33
alter table "public"."tournament_brackets" drop column if exists "group";
4-
alter table "public"."tournament_brackets" drop column if exists "bye" boolean;
4+
alter table "public"."tournament_brackets" drop column if exists "bye";
55
alter table "public"."tournament_brackets" drop column if exists "scheduled_eta";

0 commit comments

Comments
 (0)