From 651b2e140ba842126c4177df1b909b2b764ecdb8 Mon Sep 17 00:00:00 2001
From: gssong <1742057357@qq.com>
Date: 星期日, 31 三月 2024 15:34:27 +0800
Subject: [PATCH] add 添加表单配置

---
 script/sql/postgres/flowable.sql |   97 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 95 insertions(+), 2 deletions(-)

diff --git a/script/sql/postgres/flowable.sql b/script/sql/postgres/flowable.sql
index e7376d4..b02be4f 100644
--- a/script/sql/postgres/flowable.sql
+++ b/script/sql/postgres/flowable.sql
@@ -35,7 +35,7 @@
     create_time timestamp,
     update_by   bigint,
     update_time timestamp,
-    tenant_id   varchar(20) default '000000'::varchar
+    tenant_id   varchar(20)
 );
 
 comment on table test_leave is '璇峰亣鐢宠琛�';
@@ -76,7 +76,7 @@
     category_code varchar(255),
     parent_id     bigint,
     sort_num      bigint,
-    tenant_id     varchar(20) default '000000'::varchar,
+    tenant_id     varchar(20),
     create_dept   bigint,
     create_by     bigint,
     create_time   timestamp,
@@ -116,6 +116,99 @@
 
 INSERT INTO wf_category values (1, 'OA', 'OA', 0, 0, '000000', 103, 1, now(), 1, now());
 
+create table wf_task_back_node
+(
+    id            bigint not null
+        constraint pk_wf_task_back_node
+        primary key,
+    node_id       varchar(255) not null,
+    node_name     varchar(255) not null,
+    order_no      bigint not null,
+    instance_id   varchar(255) not null,
+    task_type     varchar(255) not null,
+    assignee      varchar(2000) not null,
+    tenant_id     varchar(20),
+    create_dept   bigint,
+    create_by     bigint,
+    create_time   timestamp,
+    update_by     bigint,
+    update_time   timestamp
+);
+
+comment on table wf_task_back_node is '鑺傜偣瀹℃壒璁板綍';
+
+comment on column wf_task_back_node.id is '涓婚敭';
+
+comment on column wf_task_back_node.node_id is '鑺傜偣id';
+
+comment on column wf_task_back_node.node_name is '鑺傜偣鍚嶇О';
+
+comment on column wf_task_back_node.order_no is '鎺掑簭';
+
+comment on column wf_task_back_node.instance_id is '娴佺▼瀹炰緥id';
+
+comment on column wf_task_back_node.task_type is '鑺傜偣绫诲瀷';
+
+comment on column wf_task_back_node.assignee is '瀹℃壒浜�';
+
+comment on column wf_task_back_node.tenant_id is '绉熸埛id';
+
+comment on column wf_task_back_node.create_dept is '鍒涘缓閮ㄩ棬';
+
+comment on column wf_task_back_node.create_by is '鍒涘缓鑰�';
+
+comment on column wf_task_back_node.create_time is '鍒涘缓鏃堕棿';
+
+comment on column wf_task_back_node.update_by is '淇敼鑰�';
+
+comment on column wf_task_back_node.update_time is '淇敼鏃堕棿';
+
+alter table wf_task_back_node
+    owner to postgres;
+
+create table wf_definition_config
+(
+    id            bigint(20) not null
+        constraint pk_wf_definition_config
+        primary key,
+    form_id       bigint(20) not null,
+    definition_id varchar(255) not null,
+    process_key   varchar(255)  not null,
+    tenant_id     varchar(20),
+    create_dept   bigint,
+    create_by     bigint,
+    create_time   timestamp,
+    update_by     bigint,
+    update_time   timestamp
+);
+
+comment on table wf_definition_config is '娴佺▼瀹氫箟閰嶇疆';
+
+comment on column wf_definition_config.id is '涓婚敭';
+
+comment on column wf_definition_config.form_id is '琛ㄥ崟ID';
+
+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.tenant_id is '绉熸埛id';
+
+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 '鍒涘缓鏃堕棿';
+
+comment on column wf_definition_config.update_by is '淇敼鑰�';
+
+comment on column wf_definition_config.update_time is '淇敼鏃堕棿';
+
+alter table wf_definition_config
+    owner to postgres;
+create unique index uni_definition_id
+    on wf_definition_config (definition_id);
+
 INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11638, '璇峰亣鐢宠', 5, 1, 'leave', 'workflow/leave/index', 1, 0, 'C', '0', '0', 'demo:leave:list', '#', 103, 1, now(), NULL, NULL, '璇峰亣鐢宠鑿滃崟');
 INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11639, '璇峰亣鐢宠鏌ヨ', 11638, 1, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:query', '#', 103, 1, now(), NULL, NULL, '');
 INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11640, '璇峰亣鐢宠鏂板', 11638, 2, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:add', '#', 103, 1, now(), NULL, NULL, '');

--
Gitblit v1.9.3