fix(DB/GameEvent): Add Arena Seasons 1 and 2 to game_event (#13999)
This commit is contained in:
parent
f0b2ae08db
commit
4ebae4a260
1 changed files with 9 additions and 0 deletions
|
|
@ -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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue