From 148ad7a3d157e53ab1483830b39968b0ddad746d Mon Sep 17 00:00:00 2001 From: gssong <1742057357@qq.com> Date: 星期二, 26 三月 2024 22:00:31 +0800 Subject: [PATCH] update 补充工作流sql脚本 --- 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..4e4f708 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_form_definition +( + id bigint(20) not null + constraint pk_wf_form_definition + primary key, + path varchar(200) 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_form_definition is '琛ㄥ崟閰嶇疆'; + +comment on column wf_form_definition.id is '涓婚敭'; + +comment on column wf_form_definition.path is '璺敱鍦板潃'; + +comment on column wf_form_definition.definition_id is '娴佺▼瀹氫箟ID'; + +comment on column wf_form_definition.process_key is '娴佺▼KEY'; + +comment on column wf_form_definition.tenant_id is '绉熸埛id'; + +comment on column wf_form_definition.create_dept is '鍒涘缓閮ㄩ棬'; + +comment on column wf_form_definition.create_by is '鍒涘缓鑰�'; + +comment on column wf_form_definition.create_time is '鍒涘缓鏃堕棿'; + +comment on column wf_form_definition.update_by is '淇敼鑰�'; + +comment on column wf_form_definition.update_time is '淇敼鏃堕棿'; + +alter table wf_form_definition + owner to postgres; +create unique index uni_definition_id + on wf_form_definition (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