chat_sensitive_words.sql 512 B

1234567
  1. CREATE TABLE `chat_sensitive_words` (
  2. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3. `word` varchar(128) NOT NULL DEFAULT '',
  4. `add_type` tinyint(8) unsigned DEFAULT '0',
  5. PRIMARY KEY (`id`),
  6. UNIQUE KEY `idx_word` (`word`) USING HASH COMMENT '关键字索引'
  7. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;