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

@@ -1106,6 +1106,7 @@ create table wf_deploy_form
deploy_id varchar(64) not null,
form_key varchar(64) not null,
node_key varchar(64) not null,
form_name varchar(64) default ''::varchar,
node_name varchar(255) default ''::varchar,
content text,
constraint wf_deploy_form_pk primary key (deploy_id, form_key, node_key)
@@ -1115,6 +1116,7 @@ comment on table wf_deploy_form is '流程实例关联表单';
comment on column wf_deploy_form.deploy_id is '流程实例主键';
comment on column wf_deploy_form.form_key is '表单Key';
comment on column wf_deploy_form.node_key is '节点Key';
comment on column wf_deploy_form.form_name is '表单名称';
comment on column wf_deploy_form.node_name is '节点名称';
comment on column wf_deploy_form.content is '表单内容';

View File

@@ -1,3 +1,7 @@
ALTER TABLE "sys_oss_config" ADD COLUMN "access_policy" char(1) NOT NULL DEFAULT '1'::bpchar;
COMMENT ON COLUMN "sys_oss_config"."access_policy" IS '桶权限类型(0=private 1=public 2=custom)';
ALTER TABLE "wf_deploy_form" ADD COLUMN "form_name" varchar(64) DEFAULT ''::VARCHAR;
COMMENT ON COLUMN "wf_deploy_form"."form_name" IS '表单名称';