added a mechanism to workflows so that they can be run serially rather than parallel

This commit is contained in:
JT Smith 2006-02-13 16:59:29 +00:00
parent f9a60ab55a
commit 3d92467451
3 changed files with 14 additions and 1 deletions

View file

@ -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 (