sql脚本提交

pull/1/head
liu 11 months ago
parent 988b593fb8
commit e820c6e0a5

@ -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';
alter table vp_ask_template_question_library change description standard_question varchar (255) null comment '中文注释 用户设置的问题 原本字段是description';
Loading…
Cancel
Save