Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

2 changed files with 0 additions and 29 deletions

View File

@ -17,4 +17,3 @@ PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"

View File

@ -614,31 +614,3 @@ VALUES ( 2, 8, '10799', '2024-05-01T19:00:00+09:00'),
( 3, 8, '10822', '2024-05-21T19:00:00+09:00'),
(12, 8, '10827', '2024-05-24T19:00:00+09:00'),
( 5, 8, '10834', '2024-05-31T19:00:00+09:00');
-- [2024-05-29 Wed 13:04] These casters haven't shown up in a while,
-- but let's add them for completness.
INSERT INTO caster (n) VALUES ("izumin"), ("sayane");
-- [2024-05-31 Fri 05:39] Add upcoming au PAY shows for 2024-06
INSERT INTO schedule (caster_id, segment_id, video_id, jst)
VALUES ( 4, 8, '', '2024-06-04T19:00:00+09:00'),
( 3, 8, '', '2024-06-18T19:00:00+09:00'),
( NULL, 8, '', '2024-06-25T18:30:00+09:00'),
( NULL, 8, '', '2024-06-25T18:30:01+09:00'),
( NULL, 8, '', '2024-06-29T19:00:00+09:00'),
( NULL, 8, '', '2024-06-29T19:00:01+09:00');
UPDATE schedule SET video_id = 10889 WHERE jst = '2024-06-04T19:00:00+09:00';
UPDATE schedule SET video_id = 10900 WHERE jst = '2024-06-18T19:00:00+09:00';
-- [2024-06-04 Tue 10:13] Add missing au PAY caster info for 2024-06
UPDATE schedule SET caster_id = 8 WHERE jst = '2024-06-25T18:30:00+09:00';
UPDATE schedule SET caster_id = 5 WHERE jst = '2024-06-25T18:30:01+09:00';
UPDATE schedule SET caster_id = 13 WHERE jst = '2024-06-29T19:00:00+09:00';
UPDATE schedule SET caster_id = 10 WHERE jst = '2024-06-29T19:00:01+09:00';
-- [2024-06-12 Wed 15:32] Add final au PAY video_ids for 2024-06
UPDATE schedule SET video_id = 10906 WHERE jst = '2024-06-25T18:30:00+09:00';
UPDATE schedule SET video_id = 10906 WHERE jst = '2024-06-25T18:30:01+09:00';
UPDATE schedule SET video_id = 10911 WHERE jst = '2024-06-29T19:00:00+09:00';
UPDATE schedule SET video_id = 10911 WHERE jst = '2024-06-29T19:00:01+09:00';