chore(DB): import pending files

Referenced commit(s): 8b8ba243d8
This commit is contained in:
github-actions[bot]
2026-06-01 20:29:41 +00:00
parent 8b8ba243d8
commit b927b716f2
3 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
-- DB update 2026_04_12_00 -> 2026_06_01_00
-- Add `chat_filter` table for chat content filtering.
DROP TABLE IF EXISTS `chat_filter`;
CREATE TABLE `chat_filter` (
`ID` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`Word` VARCHAR(255) NOT NULL,
PRIMARY KEY (`ID`) USING BTREE
)
CHARSET = utf8mb4
COLLATE = utf8mb4_unicode_ci
ENGINE = InnoDB
ROW_FORMAT = DEFAULT
;