From e820c6e0a571f10dd0a4c35359d848aec859dbb0 Mon Sep 17 00:00:00 2001 From: liu Date: Fri, 7 Jun 2024 10:52:38 +0800 Subject: [PATCH] =?UTF-8?q?sql=E8=84=9A=E6=9C=AC=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/v3.0.0/step1.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docker/v3.0.0/step1.sql b/docker/v3.0.0/step1.sql index e68a2d96..68296230 100644 --- a/docker/v3.0.0/step1.sql +++ b/docker/v3.0.0/step1.sql @@ -12,6 +12,10 @@ create table vp_ask_template_question_similarity update_time datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '更新时间' ) comment '相似问问题库'; +-- 病历表中增加字段 +alter table vp_medical_rec + add medical_record_ai text null comment '完整的病例信息,以提交大模型进行问答', + -- 修改标准问表,移除默认回复 alter table vp_ask_template_question_library drop column default_answer_code; @@ -58,5 +62,4 @@ create table vp_ask_circulation_detail ) comment '问诊流程详细流转记录表'; -alter table vp_ask_template_question_library - change description standard_question varchar(255) null comment '中文注释 用户设置的问题 原本字段是description'; \ No newline at end of file +alter table vp_ask_template_question_library change description standard_question varchar (255) null comment '中文注释 用户设置的问题 原本字段是description'; \ No newline at end of file