workflows now run, but with errors, must fix that next
This commit is contained in:
parent
6fc6b00b49
commit
ccf1b3633f
6 changed files with 38 additions and 31 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue