planetwars.dev/planetwars-server/migrations/2022-07-23-131936_bot_active_version/up.sql
2022-07-23 23:40:25 +02:00

12 lines
354 B
SQL

-- 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;