From 81e58c7a7078f71358d41b8267c6bfdcb97822d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=91=E5=B7=9D?= <763999883@qq.com> Date: Wed, 14 Dec 2022 13:32:12 +0000 Subject: [PATCH] =?UTF-8?q?update=20mysqldb/upgrade(alter=20table)/?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BDSQL/V3.12=E5=8D=87=E7=BA=A7?= =?UTF-8?q?.sql.=20=E5=8D=87=E7=BA=A7=E6=97=B6=EF=BC=8C=E8=A1=A8sys=5Fclie?= =?UTF-8?q?nt=E5=92=8C=E8=A1=A8sys=5Fuser=E7=BC=BA=E5=B0=91=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 云川 <763999883@qq.com> --- .../V3.12\345\215\207\347\272\247.sql" | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git "a/mysqldb/upgrade(alter table)/\346\226\260\345\242\236\345\212\237\350\203\275SQL/V3.12\345\215\207\347\272\247.sql" "b/mysqldb/upgrade(alter table)/\346\226\260\345\242\236\345\212\237\350\203\275SQL/V3.12\345\215\207\347\272\247.sql" index 03f8b97..de5fa49 100644 --- "a/mysqldb/upgrade(alter table)/\346\226\260\345\242\236\345\212\237\350\203\275SQL/V3.12\345\215\207\347\272\247.sql" +++ "b/mysqldb/upgrade(alter table)/\346\226\260\345\242\236\345\212\237\350\203\275SQL/V3.12\345\215\207\347\272\247.sql" @@ -41,4 +41,9 @@ update task_scheduling set plan_type=1 where plan_type=0; -- 任务执行表添加一列 alter table task_case_execute add plan_id int DEFAULT NULL COMMENT "计划ID"; -- 修改plan_id默认为null -alter table task_scheduling MODIFY plan_id int(11) DEFAULT NULL; \ No newline at end of file +alter table task_scheduling MODIFY plan_id int(11) DEFAULT NULL; + + +-- 2022.12.14 本地启动发现这俩表缺少字段,补充 +alter table sys_client add client_type int COMMENT '客户端类型'; +alter table sys_user add date_quantum int COMMENT '用户设置的默认项目'; \ No newline at end of file -- Gitee