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 '表单内容';