|
|
|
@ -148,7 +148,10 @@ CREATE TABLE `yu_message` ( |
|
|
|
`extends` json DEFAULT NULL COMMENT '消息扩展内容', |
|
|
|
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态', |
|
|
|
`del_user` text COLLATE utf8mb4_unicode_ci COMMENT '已删除成员', |
|
|
|
`delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间' |
|
|
|
`delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间', |
|
|
|
`plain_text` text COLLATE utf8mb4_unicode_ci COMMENT '消息内容纯文本', |
|
|
|
PRIMARY KEY (`msg_id`), |
|
|
|
KEY `chat_identify` (`chat_identify`) |
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
|
|
|
|
|
-- -------------------------------------------------------- |
|
|
|
|