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 '问题列表 由用户传入的问题生成的问题列表'; +