From 1f0c0ba0a9e56e373aa55533da27ee3bd7a785b7 Mon Sep 17 00:00:00 2001 From: l90215 Date: Thu, 4 Sep 2025 17:01:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0session=E8=A1=A8?= =?UTF-8?q?=E4=BC=9A=E8=AF=9DID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/sql/ruoyi-ai.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/sql/ruoyi-ai.sql b/script/sql/ruoyi-ai.sql index 663fa1b4..b5fa2a1f 100644 --- a/script/sql/ruoyi-ai.sql +++ b/script/sql/ruoyi-ai.sql @@ -2629,3 +2629,6 @@ CREATE TABLE `knowledge_role_relation` ( ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '知识库角色与知识库关联表' ROW_FORMAT = DYNAMIC; SET FOREIGN_KEY_CHECKS = 1; + +-- 增加会话ID +alter table chat_session add conversation_id varchar(32) null comment '会话ID';