fix:联系人直接发消息

This commit is contained in:
zhongzb
2023-09-12 22:41:17 +08:00
parent 17bf39e37d
commit 2cd03adbe9
7 changed files with 57 additions and 1 deletions

View File

@@ -187,6 +187,9 @@ CREATE TABLE `user_role` (
KEY `idx_update_time` (`update_time`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户角色关系表';
insert into role(id,`name`) values(1,'超级管理员');
insert into role(id,`name`) values(2,'抹茶群聊管理员');
DROP TABLE IF EXISTS `sensitive_word`;
CREATE TABLE `sensitive_word` (
`word` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '敏感词'