diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-13 22:22:45 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-10-13 22:22:45 +0200 |
commit | eb2cbb15fbea6dd6f800598329cd5cc892090d7b (patch) | |
tree | 7768204300a54b0bc4e71f3bb3f82519e8aa3196 /planetwars-server/migrations | |
parent | 2278ecd2584050c28e62f0f5fd8967b81d64cc5b (diff) | |
download | planetwars.dev-eb2cbb15fbea6dd6f800598329cd5cc892090d7b.tar.xz planetwars.dev-eb2cbb15fbea6dd6f800598329cd5cc892090d7b.zip |
save matchplayer had_errors in database
Diffstat (limited to 'planetwars-server/migrations')
-rw-r--r-- | planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/down.sql | 1 | ||||
-rw-r--r-- | planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/up.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/down.sql b/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/down.sql new file mode 100644 index 0000000..41ee396 --- /dev/null +++ b/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/down.sql @@ -0,0 +1 @@ +ALTER TABLE match_players DROP COLUMN had_errors;
\ No newline at end of file diff --git a/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/up.sql b/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/up.sql new file mode 100644 index 0000000..68ac0b7 --- /dev/null +++ b/planetwars-server/migrations/2022-10-13-195242_add_had_errors_to_match_players/up.sql @@ -0,0 +1 @@ +ALTER TABLE match_players ADD COLUMN had_errors boolean;
\ No newline at end of file |