chore(DB): import pending files

Referenced commit(s): f6a0433297
This commit is contained in:
github-actions[bot]
2025-02-12 10:10:31 +00:00
parent f6a0433297
commit 3a41901154
2 changed files with 2 additions and 0 deletions

View File

@@ -1,10 +0,0 @@
DROP TABLE IF EXISTS `active_arena_season`;
CREATE TABLE `active_arena_season` (
`season_id` TINYINT UNSIGNED NOT NULL,
`season_state` TINYINT UNSIGNED NOT NULL COMMENT 'Supported 2 states: 0 - disabled; 1 - in progress.'
)
CHARSET = utf8mb4
COLLATE = utf8mb4_unicode_ci
ENGINE = InnoDB;
INSERT INTO `active_arena_season` (`season_id`, `season_state`) VALUES (8, 1);