From 01067a3afd4371bf1a47b881e45beca1372f317f Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Thu, 10 Apr 2025 14:49:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/im-platform.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/im-platform.sql b/db/im-platform.sql index 1e62eca..e1ca294 100644 --- a/db/im-platform.sql +++ b/db/im-platform.sql @@ -22,6 +22,7 @@ create table `im_friend`( `friend_id` bigint not null comment '好友id', `friend_nick_name` varchar(255) not null comment '好友昵称', `friend_head_image` varchar(255) default '' comment '好友头像', + `deleted` tinyint comment '删除标识 0:正常 1:已删除', `created_time` datetime DEFAULT CURRENT_TIMESTAMP comment '创建时间', key `idx_user_id` (`user_id`), key `idx_friend_id` (`friend_id`)