diff options
Diffstat (limited to 'planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle')
-rw-r--r-- | planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/down.sql | 1 | ||||
-rw-r--r-- | planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/up.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/down.sql b/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/down.sql new file mode 100644 index 0000000..bb0b613 --- /dev/null +++ b/planetwars-server/migrations/2022-06-10-180418_nullable_match_player_code_bundle/down.sql @@ -0,0 +1 @@ +ALTER TABLE match_players ALTER COLUMN code_bundle_id SET NOT NULL; 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; |