chore(DB): import pending files

Referenced commit(s): 7fd8b04a56
This commit is contained in:
github-actions[bot]
2024-12-15 18:50:58 +00:00
parent 7fd8b04a56
commit 35f316b1a6
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- DB update 2024_11_15_00 -> 2024_12_15_00
CREATE TABLE IF NOT EXISTS `motd_localized` (
`realmid` INT,
`locale` VARCHAR(4) NOT NULL COLLATE 'utf8mb4_unicode_ci',
`text` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci',
PRIMARY KEY (`realmid`, `locale`)
)
CHARSET = utf8mb4
COLLATE = utf8mb4_unicode_ci
ENGINE = InnoDB
;