Fix video_id that was accidentally overwritten #5

wndb-video.jl thought it was a regular WN show.
This commit is contained in:
gg 2023-09-04 10:33:04 -07:00
parent 26b37ed4ed
commit 456fdc7129
1 changed files with 2 additions and 0 deletions

View File

@ -164,3 +164,5 @@ VALUES (8, 6, "10211", "2023-07-27T18:00:00+09:00");
-- au PAY 10227 Adding Rinon's show manually
INSERT INTO schedule (segment_id, caster_id, video_id, jst)
VALUES (8, 10, "10227", "2023-09-04T19:00:00+09:00");
-- fix video_id from previous; my other script overwrote it by accident
UPDATE schedule SET video_id = "10227" WHERE id = 403;