CC-5387 : Copy cc_webstream_metadata to playout_history for 2.5 upgrade
don't want to copy over useless webstream entries, those are taken from cc_webstream_metadata
This commit is contained in:
parent
6c8d12bcb1
commit
d856113386
|
@ -4,7 +4,7 @@ INSERT INTO cc_pref (keystr, valstr) VALUES ('system_version', '2.5.0');
|
|||
INSERT INTO cc_playout_history (file_id, starts, ends, instance_id)
|
||||
SELECT file_id, starts, ends, instance_id
|
||||
FROM cc_schedule
|
||||
WHERE media_item_played = true;
|
||||
WHERE file_id IS NOT NULL AND media_item_played = true;
|
||||
|
||||
|
||||
CREATE VIEW ws_history AS
|
||||
|
|
Loading…
Reference in New Issue