fp/services/migrations-data/migrations/0006_relate-vods-to-streams...

9 lines
231 B
SQL

-- 2024-12-16
-- Relate VODs to streams by matching the same date
-- Update existing VODs to associate them with the corresponding stream
UPDATE api.vods
SET stream_id = streams.id
FROM api.streams
WHERE vods.date = streams.date;