diff options
Diffstat (limited to 'planetwars-server/migrations/2022-05-29-085905_add_winner_to_matches/up.sql')
-rw-r--r-- | planetwars-server/migrations/2022-05-29-085905_add_winner_to_matches/up.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-05-29-085905_add_winner_to_matches/up.sql b/planetwars-server/migrations/2022-05-29-085905_add_winner_to_matches/up.sql new file mode 100644 index 0000000..6212ebd --- /dev/null +++ b/planetwars-server/migrations/2022-05-29-085905_add_winner_to_matches/up.sql @@ -0,0 +1,3 @@ +-- Your SQL goes here +ALTER TABLE matches +ADD COLUMN winner integer;
\ No newline at end of file |