feat(项目管理):删除sql

This commit is contained in:
wanjia 2024-05-30 15:57:53 +08:00
parent a03e926e06
commit 200de815d7
2 changed files with 0 additions and 21 deletions

View File

@ -1,12 +0,0 @@
-- create table for pipeline graphics
CREATE TABLE `pms_ci_pipeline_graphics` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pms_ci_pipeline_id` int(11) DEFAULT NULL COMMENT '流水线ID',
`pipeline_name` varchar(255) DEFAULT NULL COMMENT '流水线名称',
`pms_ci_pipeline_graphic_json` text COMMENT '流水线图JSON',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
`update_by` varchar(64) DEFAULT '' COMMENT '更新者',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`create_by` varchar(64) DEFAULT '' COMMENT '创建者',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='流水线图形化构建表'

View File

@ -1,9 +0,0 @@
-- This migration script is used to add a new column `pipeline_template_json` to the `pms_ci_pipelines` table.
SET
FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `pms_ci_pipelines`
ADD COLUMN `pipeline_template_json` TEXT COMMENT '流水线模板JSON' AFTER `pms_project_id`;
SET
FOREIGN_KEY_CHECKS = 1;