diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:09:33 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:09:33 +0200 |
commit | 5ee66c9c9b4156692c739a861c9cdbaf0c65aec8 (patch) | |
tree | 55c1ce0b99b26c6837304d72da772be6491882ff /planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql | |
parent | d1977b95c82f608bc558432cdfba8026aaf0648d (diff) | |
download | planetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.tar.xz planetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.zip |
allow match_player code_bundle_id to be null
Diffstat (limited to 'planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql')
-rw-r--r-- | planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql b/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql new file mode 100644 index 0000000..86ab65d --- /dev/null +++ b/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql @@ -0,0 +1 @@ +ALTER TABLE match_players ALTER COLUMN code_bundle_id DROP NOT NULL; |