Skip to content

Commit

Permalink
feat: switches for contest
Browse files Browse the repository at this point in the history
  • Loading branch information
FranGuam committed Mar 18, 2024
1 parent 1ab62d6 commit 5f5cf2e
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."contest" add column "code_upload_switch" boolean
-- not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."contest" add column "code_upload_switch" boolean
not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."contest" add column "arena_switch" boolean
-- not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."contest" add column "arena_switch" boolean
not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."contest" add column "playground_switch" boolean
-- not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."contest" add column "playground_switch" boolean
not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."contest" add column "stream_switch" boolean
-- not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."contest" add column "stream_switch" boolean
not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."contest" add column "playback_switch" boolean
-- not null default 'False';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."contest" add column "playback_switch" boolean
not null default 'False';

0 comments on commit 5f5cf2e

Please sign in to comment.