mirror of
https://github.com/zongzibinbin/MallChat.git
synced 2025-12-26 12:56:20 +08:00
6 lines
347 B
SQL
6 lines
347 B
SQL
DROP TABLE IF EXISTS `sensitive_word`;
|
|
CREATE TABLE `sensitive_word` (
|
|
`word` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '敏感词'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='敏感词库';
|
|
INSERT INTO `sensitive_word` (`word`) VALUES ('TMD');
|
|
INSERT INTO `sensitive_word` (`word`) VALUES ('tmd'); |