From 631e3939d25400f3089dbcd37bbf2266b59e883b Mon Sep 17 00:00:00 2001 From: xueqingkun Date: Thu, 25 Jan 2024 15:06:22 +0800 Subject: [PATCH] web: sql todo add --- virtual-patient-web/src/main/resources/sqlScript/todo.sql | 5 ++++- 1 file changed, 4 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 291d5095..9c70b085 100644 --- a/virtual-patient-web/src/main/resources/sqlScript/todo.sql +++ b/virtual-patient-web/src/main/resources/sqlScript/todo.sql @@ -58,4 +58,7 @@ alter table vp_medical_rec modify patient_id varchar(64) null comment '病人ID'; alter table vp_disease_treatment_plan_drug - add disease_treatment_plan_id varchar(64) null comment '疾病处置计划id;初始设计的时候是希望 diseaseId 和 treatmentPlanId 关联 DiseaseTreatmentPlan表中的 diseaseId,treatmentPlanId, 后面由于疾病没有使用到treatmentPlanId(统一设置为20),所以只根据diseaseId,treatmentPlanId无法区分出某一种处置计划对应的药物' after treatment_plan_id; \ No newline at end of file + add disease_treatment_plan_id varchar(64) null comment '疾病处置计划id;初始设计的时候是希望 diseaseId 和 treatmentPlanId 关联 DiseaseTreatmentPlan表中的 diseaseId,treatmentPlanId, 后面由于疾病没有使用到treatmentPlanId(统一设置为20),所以只根据diseaseId,treatmentPlanId无法区分出某一种处置计划对应的药物' after treatment_plan_id; + +alter table vp_disease + modify symptom varchar(512) null comment '症状'; \ No newline at end of file