diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-23 23:40:25 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-23 23:40:25 +0200 |
commit | 4a582e8079178a7ac11f2a492e7988fcdaa210cd (patch) | |
tree | 1403b3e409e184bb53e0349d7e68e673fe7d7b3c /planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql | |
parent | f19a70e710b8bf4605625516aa7e4c0cc7ace2e4 (diff) | |
download | planetwars.dev-4a582e8079178a7ac11f2a492e7988fcdaa210cd.tar.xz planetwars.dev-4a582e8079178a7ac11f2a492e7988fcdaa210cd.zip |
store active version id in bots table
Diffstat (limited to 'planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql')
-rw-r--r-- | planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql b/planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql new file mode 100644 index 0000000..8ea398b --- /dev/null +++ b/planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql @@ -0,0 +1,12 @@ +-- Your SQL goes here +ALTER TABLE bots ADD COLUMN active_version INTEGER REFERENCES bot_versions(id); + +-- set most recent bot verison as active +UPDATE bots +SET active_version = most_recent.id +FROM ( + SELECT DISTINCT ON (bot_id) id, bot_id + FROM bot_versions + ORDER BY bot_id, created_at DESC + ) most_recent +WHERE bots.id = most_recent.bot_id;
\ No newline at end of file |