|
|
@ -400,7 +400,6 @@ CREATE TABLE `t_ds_process_definition` ( |
|
|
|
`release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online', |
|
|
|
`release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online', |
|
|
|
`user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id', |
|
|
|
`user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id', |
|
|
|
`global_params` text COMMENT 'global parameters', |
|
|
|
`global_params` text COMMENT 'global parameters', |
|
|
|
`locations` text COMMENT 'node location information', |
|
|
|
|
|
|
|
`flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available', |
|
|
|
`flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available', |
|
|
|
`locations` text COMMENT 'Node location information', |
|
|
|
`locations` text COMMENT 'Node location information', |
|
|
|
`connects` text COMMENT 'Node connection information', |
|
|
|
`connects` text COMMENT 'Node connection information', |
|
|
@ -420,6 +419,7 @@ CREATE TABLE `t_ds_process_definition` ( |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_ds_process_definition_log |
|
|
|
-- Table structure for t_ds_process_definition_log |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `t_ds_process_definition_log`; |
|
|
|
CREATE TABLE `t_ds_process_definition_log` ( |
|
|
|
CREATE TABLE `t_ds_process_definition_log` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
@ -446,6 +446,7 @@ CREATE TABLE `t_ds_process_definition_log` ( |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_ds_task_definition |
|
|
|
-- Table structure for t_ds_task_definition |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `t_ds_task_definition`; |
|
|
|
CREATE TABLE `t_ds_task_definition` ( |
|
|
|
CREATE TABLE `t_ds_task_definition` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
@ -474,6 +475,7 @@ CREATE TABLE `t_ds_task_definition` ( |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_ds_task_definition_log |
|
|
|
-- Table structure for t_ds_task_definition_log |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `t_ds_task_definition_log`; |
|
|
|
CREATE TABLE `t_ds_task_definition_log` ( |
|
|
|
CREATE TABLE `t_ds_task_definition_log` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
|
`code` bigint(20) NOT NULL COMMENT 'encoding', |
|
|
@ -503,15 +505,14 @@ CREATE TABLE `t_ds_task_definition_log` ( |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_ds_process_task_relation |
|
|
|
-- Table structure for t_ds_process_task_relation |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `t_ds_process_task_relation`; |
|
|
|
CREATE TABLE `t_ds_process_task_relation` ( |
|
|
|
CREATE TABLE `t_ds_process_task_relation` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`name` varchar(200) DEFAULT NULL COMMENT 'relation name', |
|
|
|
`name` varchar(200) DEFAULT NULL COMMENT 'relation name', |
|
|
|
`version` int(11) DEFAULT NULL COMMENT 'relation version', |
|
|
|
`version` int(11) DEFAULT NULL COMMENT 'relation version', |
|
|
|
`project_code` bigint(20) NOT NULL COMMENT 'project code', |
|
|
|
`project_code` bigint(20) NOT NULL COMMENT 'project code', |
|
|
|
`process_definition_code` bigint(20) NOT NULL COMMENT 'process code', |
|
|
|
`process_definition_code` bigint(20) NOT NULL COMMENT 'process code', |
|
|
|
`pre_project_code` bigint(20) NOT NULL COMMENT 'pre process code', |
|
|
|
|
|
|
|
`pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code', |
|
|
|
`pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code', |
|
|
|
`post_project_code` bigint(20) NOT NULL COMMENT 'post process code', |
|
|
|
|
|
|
|
`post_task_code` bigint(20) NOT NULL COMMENT 'post task code', |
|
|
|
`post_task_code` bigint(20) NOT NULL COMMENT 'post task code', |
|
|
|
`condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay', |
|
|
|
`condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay', |
|
|
|
`condition_params` text COMMENT 'condition params(json)', |
|
|
|
`condition_params` text COMMENT 'condition params(json)', |
|
|
@ -523,15 +524,14 @@ CREATE TABLE `t_ds_process_task_relation` ( |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
-- Table structure for t_ds_process_task_relation_log |
|
|
|
-- Table structure for t_ds_process_task_relation_log |
|
|
|
-- ---------------------------- |
|
|
|
-- ---------------------------- |
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `t_ds_process_task_relation_log`; |
|
|
|
CREATE TABLE `t_ds_process_task_relation_log` ( |
|
|
|
CREATE TABLE `t_ds_process_task_relation_log` ( |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id', |
|
|
|
`name` varchar(200) DEFAULT NULL COMMENT 'relation name', |
|
|
|
`name` varchar(200) DEFAULT NULL COMMENT 'relation name', |
|
|
|
`version` int(11) DEFAULT NULL COMMENT 'relation version', |
|
|
|
`version` int(11) DEFAULT NULL COMMENT 'relation version', |
|
|
|
`project_code` bigint(20) NOT NULL COMMENT 'project code', |
|
|
|
`project_code` bigint(20) NOT NULL COMMENT 'project code', |
|
|
|
`process_definition_code` bigint(20) NOT NULL COMMENT 'process code', |
|
|
|
`process_definition_code` bigint(20) NOT NULL COMMENT 'process code', |
|
|
|
`pre_project_code` bigint(20) NOT NULL COMMENT 'pre process code', |
|
|
|
|
|
|
|
`pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code', |
|
|
|
`pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code', |
|
|
|
`post_project_code` bigint(20) NOT NULL COMMENT 'post process code', |
|
|
|
|
|
|
|
`post_task_code` bigint(20) NOT NULL COMMENT 'post task code', |
|
|
|
`post_task_code` bigint(20) NOT NULL COMMENT 'post task code', |
|
|
|
`condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay', |
|
|
|
`condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay', |
|
|
|
`condition_params` text COMMENT 'condition params(json)', |
|
|
|
`condition_params` text COMMENT 'condition params(json)', |
|
|
@ -837,7 +837,7 @@ CREATE TABLE `t_ds_task_instance` ( |
|
|
|
`var_pool` longtext COMMENT 'var_pool', |
|
|
|
`var_pool` longtext COMMENT 'var_pool', |
|
|
|
PRIMARY KEY (`id`), |
|
|
|
PRIMARY KEY (`id`), |
|
|
|
KEY `process_instance_id` (`process_instance_id`) USING BTREE, |
|
|
|
KEY `process_instance_id` (`process_instance_id`) USING BTREE, |
|
|
|
KEY `task_instance_index` (`process_definition_id`,`process_instance_id`) USING BTREE, |
|
|
|
KEY `task_instance_index` (`process_definition_code`,`process_instance_id`) USING BTREE, |
|
|
|
CONSTRAINT `foreign_key_instance_id` FOREIGN KEY (`process_instance_id`) REFERENCES `t_ds_process_instance` (`id`) ON DELETE CASCADE |
|
|
|
CONSTRAINT `foreign_key_instance_id` FOREIGN KEY (`process_instance_id`) REFERENCES `t_ds_process_instance` (`id`) ON DELETE CASCADE |
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
|
|
|
|
|
|
|
|
|
|
|