workflows now run, but with errors, must fix that next

This commit is contained in:
JT Smith 2006-03-18 17:40:49 +00:00
parent 6fc6b00b49
commit ccf1b3633f
6 changed files with 38 additions and 31 deletions

View file

@ -106,6 +106,12 @@ sub addWorkflow {
runningSince bigint,
lastUpdate bigint
)");
$session->db->write("create table WorkflowInstanceScratch (
instanceId varchar(22) binary not null,
name varchar(255) not null,
value text,
primary key (instanceId, name)
)");
$session->db->write("create table Workflow (
workflowId varchar(22) binary not null primary key,
title varchar(255) not null default 'Untitled',