chore: upgrade data
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled

ty anon
This commit is contained in:
Raymond 2026-03-06 23:42:15 -05:00 committed by GitHub
parent b487a756b2
commit f6afb824a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,47 @@
INSERT INTO chusan_game_event (id, type, end_date, start_date, enable)
VALUES
(2601, 13, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18200, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18201, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18202, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18203, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18204, 8, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18205, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18206, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18207, 8, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18208, 11, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18300, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18301, 5, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18302, 4, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18303, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18304, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18305, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18306, 11, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18307, 12, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(2602, 13, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18350, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18351, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18352, 8, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18353, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18354, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18355, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18356, 14, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18357, 10, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18358, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18359, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18360, 11, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18400, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18401, 5, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18402, 4, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18403, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18404, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18405, 2, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18406, 17, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18407, 1, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18408, 3, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true),
(18409, 12, '2029-01-01 00:00:00.000000','2019-01-01 00:00:00.000000',true)
ON DUPLICATE KEY UPDATE
type = VALUES(type),
end_date = VALUES(end_date),
start_date = VALUES(start_date),
enable = VALUES(enable);