feat(Core/Autobroacast): Add autobroadcast locale (#20946)
This commit is contained in:
parent
778742749a
commit
a74e06c27c
6 changed files with 112 additions and 30 deletions
11
data/sql/updates/pending_db_auth/rev_1734400454914932600.sql
Normal file
11
data/sql/updates/pending_db_auth/rev_1734400454914932600.sql
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
DROP TABLE IF EXISTS `autobroadcast_locale`;
|
||||
CREATE TABLE `autobroadcast_locale` (
|
||||
`realmid` INT NOT NULL,
|
||||
`id` INT NOT NULL,
|
||||
`locale` VARCHAR(4) NOT NULL,
|
||||
`text` VARCHAR(45) NULL,
|
||||
PRIMARY KEY (`realmid`, `id`))
|
||||
CHARSET = utf8mb4
|
||||
COLLATE = utf8mb4_unicode_ci
|
||||
ENGINE = InnoDB
|
||||
;
|
||||
Loading…
Add table
Add a link
Reference in a new issue