Skip to content

Commit

Permalink
Modify game time (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzdhybthu authored May 7, 2024
1 parent 87e3789 commit 481bde3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."contest" rename column "game_time" to "max_game_time";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."contest" rename column "max_game_time" to "game_time";
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."contest" alter column "game_time" set default '100'::numeric;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."contest" alter column "game_time" set default '10'::numeric;

0 comments on commit 481bde3

Please sign in to comment.