fix(DB/GameEvent): Add Arena Seasons 1 and 2 to game_event (#13999)

This commit is contained in:
Gultask
2022-12-06 17:19:22 -03:00
committed by GitHub
parent f0b2ae08db
commit 4ebae4a260

View File

@@ -0,0 +1,9 @@
--
DELETE FROM `game_event` WHERE `eventEntry` IN (75, 76) AND `description` LIKE '%Arena Season%';
INSERT INTO `game_event` (`eventEntry`, `description`) VALUES
(75, 'Arena Season 1'),
(76, 'Arena Season 2');
DELETE FROM `game_event_arena_seasons` WHERE `eventEntry` IN (75, 76) AND `season` IN (1, 2);
INSERT INTO `game_event_arena_seasons` (`eventEntry`, `season`) VALUES
(75, 1),
(76, 2);