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/oracle/flowable.sql |   27 ++++++++++++++-------------
 1 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/script/sql/oracle/flowable.sql b/script/sql/oracle/flowable.sql
index 6fde11f..a8616c9 100644
--- a/script/sql/oracle/flowable.sql
+++ b/script/sql/oracle/flowable.sql
@@ -120,12 +120,12 @@
 comment on column WF_TASK_BACK_NODE.UPDATE_BY is '鏇存柊鑰�'
 comment on column WF_TASK_BACK_NODE.UPDATE_TIME is '鏇存柊鏃堕棿'
 
-create table WF_FORM_DEFINITION
+create table WF_DEFINITION_CONFIG
 (
     ID            NUMBER(20) NOT NULL
-        CONSTRAINT PK_WF_FORM_DEFINITION
+        CONSTRAINT PK_WF_DEFINITION_CONFIG
         PRIMARY KEY,
-    PATH          VARCHAR2(200) NOT NULL,
+    FORM_ID       NUMBER(20) NOT NULL,
     DEFINITION_ID VARCHAR2(255) NOT NULL,
     PROCESS_KEY   VARCHAR2(255)  NOT NULL,
     TENANT_ID     VARCHAR2(20),
@@ -137,16 +137,17 @@
     constraint uni_definition_id
         unique (definition_id)
 );
-comment on table WF_FORM_DEFINITION is '琛ㄥ崟閰嶇疆'
-comment on column WF_FORM_DEFINITION.ID 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 '绉熸埛缂栧彿'
-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 '鏇存柊鏃堕棿'
+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 '绉熸埛缂栧彿'
+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 '鏇存柊鏃堕棿'
 
 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, sysdate, 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, sysdate, NULL, NULL, '');

--
Gitblit v1.9.3