introduced type concept into workflow

This commit is contained in:
JT Smith 2006-02-11 21:03:14 +00:00
parent d194d3760a
commit 063e8703c7
4 changed files with 60 additions and 13 deletions

View file

@ -50,6 +50,7 @@ sub addWorkflow {
workflowId varchar(22) binary not null,
className varchar(255),
methodName varchar(255),
priority int not null default 2,
parameters text
)");
$session->db->write("create table WorkflowInstance (
@ -60,7 +61,8 @@ sub addWorkflow {
className varchar(255),
methodName varchar(255),
parameters text,
runningSince bigint
runningSince bigint,
lastUpdate bigint
)");
$session->db->write("create table Workflow (
workflowId varchar(22) binary not null primary key,