chore: 更新 SQL 脚本,wf_deploy_form 表新增 form_name 字段

This commit is contained in:
konbai
2023-01-15 16:34:26 +08:00
parent be8f436092
commit 473860b735
8 changed files with 33 additions and 0 deletions

View File

@@ -825,6 +825,7 @@ create table `wf_deploy_form` (
deploy_id varchar(64) not null comment '流程实例主键',
form_key varchar(64) not null comment '表单Key',
node_key varchar(64) not null comment '节点Key',
form_name varchar(64) default '' comment '表单名称',
node_name varchar(255) default '' comment '节点名称',
content longtext default null comment '表单内容',
primary key (deploy_id, form_key, node_key)

View File

@@ -1 +1,3 @@
ALTER TABLE sys_oss_config ADD COLUMN access_policy char(1) NOT NULL DEFAULT 1 COMMENT '桶权限类型(0=private 1=public 2=custom)' AFTER region;
ALTER TABLE wf_deploy_form ADD COLUMN form_name varchar(64) NULL COMMENT '表单名称' AFTER node_key;