added a mechanism to workflows so that they can be run serially rather than parallel
This commit is contained in:
parent
f9a60ab55a
commit
3d92467451
3 changed files with 14 additions and 1 deletions
|
|
@ -71,6 +71,7 @@ sub addWorkflow {
|
|||
title varchar(255) not null default 'Untitled',
|
||||
description text,
|
||||
enabled int not null default 0,
|
||||
isSerial int not null default 0,
|
||||
type varchar(255) not null default 'none'
|
||||
)");
|
||||
$session->db->write("create table WorkflowActivity (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue