mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-15 14:11:35 +00:00
removed field nextstate from workflowlog
This commit is contained in:
parent
41b63b9f56
commit
2dc62d7860
|
@ -610,7 +610,8 @@ CREATE TABLE tblWorkflowTransitionUsers (
|
||||||
`transition` int(11) default NULL,
|
`transition` int(11) default NULL,
|
||||||
`userid` int(11) default NULL,
|
`userid` int(11) default NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
CONSTRAINT `tblWorkflowTransitionUsers_transition` FOREIGN KEY (`transition`) REFERENCES `tblWorkflowTransitions` (`id`) ON DELETE CASCADE
|
CONSTRAINT `tblWorkflowTransitionUsers_transition` FOREIGN KEY (`transition`) REFERENCES `tblWorkflowTransitions` (`id`) ON DELETE CASCADE,
|
||||||
|
CONSTRAINT `tblWorkflowTransitionUsers_userid` FOREIGN KEY (`userid`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
@ -625,7 +626,8 @@ CREATE TABLE tblWorkflowTransitionGroups (
|
||||||
`groupid` int(11) default NULL,
|
`groupid` int(11) default NULL,
|
||||||
`minusers` int(11) default NULL,
|
`minusers` int(11) default NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
CONSTRAINT `tblWorkflowTransitionGroups_transition` FOREIGN KEY (`transition`) REFERENCES `tblWorkflowTransitions` (`id`) ON DELETE CASCADE
|
CONSTRAINT `tblWorkflowTransitionGroups_transition` FOREIGN KEY (`transition`) REFERENCES `tblWorkflowTransitions` (`id`) ON DELETE CASCADE,
|
||||||
|
CONSTRAINT `tblWorkflowTransitionGroups_groupid` FOREIGN KEY (`groupID`) REFERENCES `tblGroups` (`id`) ON DELETE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
@ -641,7 +643,6 @@ CREATE TABLE tblWorkflowLog (
|
||||||
`workflow` int(11) default NULL,
|
`workflow` int(11) default NULL,
|
||||||
`userid` int(11) default NULL,
|
`userid` int(11) default NULL,
|
||||||
`transition` int(11) default NULL,
|
`transition` int(11) default NULL,
|
||||||
`nextstate` int(11) default NULL,
|
|
||||||
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||||
`comment` text,
|
`comment` text,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user