From ee675a4eeb96e22bfac43e3f94364639114f931d Mon Sep 17 00:00:00 2001 From: xueqingkun Date: Tue, 16 Jan 2024 10:11:50 +0800 Subject: [PATCH] =?UTF-8?q?web=20=EF=BC=9A=20=E6=B7=BB=E5=8A=A0sql?= =?UTF-8?q?=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/sqlScript/todo.sql | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/virtual-patient-web/src/main/resources/sqlScript/todo.sql b/virtual-patient-web/src/main/resources/sqlScript/todo.sql index 7efb8d6f..b0a70c02 100644 --- a/virtual-patient-web/src/main/resources/sqlScript/todo.sql +++ b/virtual-patient-web/src/main/resources/sqlScript/todo.sql @@ -26,4 +26,11 @@ alter table vp_treatment_plan_record alter table vp_treatment_plan_record modify first_measures varchar(64) null comment '一级措施 废弃字段:对应与vp_treatment_plan表中的firstMeasures,根据treatment_plan_id可以获取到'; alter table vp_treatment_plan_record - modify drug_id varchar(64) null comment '药品编码 当treatment_plan_id 为空时,drug_id 不应该为空'; \ No newline at end of file + modify drug_id varchar(64) null comment '药品编码 当treatment_plan_id 为空时,drug_id 不应该为空'; + +-- 添加注释 +alter table vp_ask_template_question_library + modify description varchar(255) null comment '中文注释 用户设置的问题'; +alter table vp_ask_template_question_library + modify question json null comment '问题列表 由用户传入的问题生成的问题列表'; +