diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-06 22:41:27 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-06 22:41:27 +0200 |
commit | d7b7585dd70f9d41184cf88c2ecbd88341898c38 (patch) | |
tree | 89a7fc180152f18273159104265e7894718e8560 /planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql | |
parent | b3df5c6f8cc59e099a2f1db3df8089af4abca02e (diff) | |
download | planetwars.dev-d7b7585dd70f9d41184cf88c2ecbd88341898c38.tar.xz planetwars.dev-d7b7585dd70f9d41184cf88c2ecbd88341898c38.zip |
rename code_bundle to bot_version
Diffstat (limited to 'planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql')
-rw-r--r-- | planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql b/planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql index 0b28df7..91afc0c 100644 --- a/planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql +++ b/planetwars-server/migrations/2022-07-04-200149_code_bundle_to_bot_version/up.sql @@ -2,3 +2,5 @@ ALTER TABLE code_bundles RENAME TO bot_versions; ALTER TABLE bot_versions RENAME COLUMN path to code_bundle_path; ALTER TABLE bot_versions ALTER COLUMN code_bundle_path DROP NOT NULL; ALTER TABLE bot_versions ADD COLUMN container_digest TEXT; + +ALTER TABLE match_players RENAME COLUMN code_bundle_id TO bot_version_id; |