Files
spdm-backend/1-sql/2026-03-26/yang.sql

9 lines
468 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--新增字段
ALTER TABLE simulation_job
ADD COLUMN jobDesc VARCHAR(512) DEFAULT NULL COMMENT '任务描述' AFTER coreNum;
-- 修改字段描述
ALTER TABLE simulation_job
MODIFY COLUMN `independence` tinyint(1) NOT NULL DEFAULT '0' COMMENT '计算任务是否独立存在 0flow 任务 1独立提交单一任务2独立提交批量任务';
-- 新增字段
ALTER TABLE `simulation_job`
ADD COLUMN `groupId` bigint NULL COMMENT '批量任务组id';