From 22108cd60b9a10e394f2dff0de25b4bd50cd3adc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Fri, 21 Jun 2024 10:18:45 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=20postgres=20workflow?= =?UTF-8?q?=20sql=20=E7=BC=BA=E5=B0=91=E5=AD=97=E6=AE=B5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/postgres/postgres_ry_workflow.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/postgres/postgres_ry_workflow.sql b/sql/postgres/postgres_ry_workflow.sql index f894d3e5..cd2179df 100644 --- a/sql/postgres/postgres_ry_workflow.sql +++ b/sql/postgres/postgres_ry_workflow.sql @@ -121,6 +121,7 @@ create table wf_definition_config process_key varchar(255) not null, version bigint not null, tenant_id varchar(20), + remark varchar(500), create_dept bigint, create_by bigint, create_time timestamp, @@ -135,6 +136,7 @@ comment on column wf_definition_config.definition_id is '流程定义ID'; comment on column wf_definition_config.process_key is '流程KEY'; comment on column wf_definition_config.version is '流程版本'; comment on column wf_definition_config.tenant_id is '租户id'; +comment on column wf_definition_config.remark is '备注'; comment on column wf_definition_config.create_dept is '创建部门'; comment on column wf_definition_config.create_by is '创建者'; comment on column wf_definition_config.create_time is '创建时间';