This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/sql/mysql/upgrade/3.0.3.1/workflow-triggers.sql

15 lines
454 B
SQL

CREATE TABLE workflow_trigger_instances (
id int(10) unsigned NOT NULL default '0',
workflow_transition_id int(11) NOT NULL default '0',
namespace char(255) NOT NULL default '',
config_array text,
PRIMARY KEY (id),
KEY workflow_transition_id (workflow_transition_id),
KEY namespace (namespace)
) TYPE=InnoDB;
CREATE TABLE zseq_workflow_trigger_instances (
id int(10) unsigned NOT NULL auto_increment,
PRIMARY KEY (id)
) TYPE=MyISAM;