From f638677dfe007d937e7bf16445afc19ff211585a Mon Sep 17 00:00:00 2001 From: Guppy <3352793@CNHUANB4505> Date: Thu, 24 Jul 2025 09:37:09 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E4=BF=AE=E5=A4=8DSQL=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=8A=A0=E9=94=99=E8=A1=A8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/im-platform.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/im-platform.sql b/db/im-platform.sql index 60f72fb..20d1c71 100644 --- a/db/im-platform.sql +++ b/db/im-platform.sql @@ -45,7 +45,6 @@ create table `im_private_message`( create table `im_group`( `id` bigint not null auto_increment primary key comment 'id', - `tmp_id` varchar(32) comment '临时id,由前端生成', `name` varchar(255) not null comment '群名字', `owner_id` bigint not null comment '群主id', `head_image` varchar(255) default '' comment '群头像', @@ -75,6 +74,7 @@ create table `im_group_member`( create table `im_group_message`( `id` bigint not null auto_increment primary key comment 'id', + `tmp_id` varchar(32) comment '临时id,由前端生成', `group_id` bigint not null comment '群id', `send_id` bigint not null comment '发送用户id', `send_nick_name` varchar(255) DEFAULT '' comment '发送用户昵称',