From ba9fbd9fc52192b87dfd41f6abb004de7b663791 Mon Sep 17 00:00:00 2001 From: daiqy88 Date: Tue, 14 Apr 2026 11:25:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9simulation=5Fpool=E5=8F=8Asim?= =?UTF-8?q?ulation=5Fpool=5Ftask=E8=A1=A8=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-sql/2026-04-14/simulation_pool.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 1-sql/2026-04-14/simulation_pool.sql diff --git a/1-sql/2026-04-14/simulation_pool.sql b/1-sql/2026-04-14/simulation_pool.sql new file mode 100644 index 00000000..c9c5220b --- /dev/null +++ b/1-sql/2026-04-14/simulation_pool.sql @@ -0,0 +1,5 @@ +ALTER TABLE `simulation_pool` ADD COLUMN `attachment` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT NULL COMMENT '分析项库关联附件' AFTER `iconFile`; + +ALTER TABLE `simulation_pool` ADD COLUMN `animation` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT NULL COMMENT '分析项库关联动画' AFTER `attachment`; + +ALTER TABLE `simulation_pool_task` ADD COLUMN `responsible` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT '' COMMENT '任务负责人,可以有多个' AFTER `group`; \ No newline at end of file