-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
47 lines (42 loc) · 1.62 KB
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
CREATE TABLE tx_jobrouterprocess_domain_model_process(
name varchar(50) DEFAULT '' NOT NULL,
connection int(11) unsigned DEFAULT '0' NOT NULL,
processtablefields int(11) unsigned DEFAULT '0' NOT NULL,
description text
);
CREATE TABLE tx_jobrouterprocess_domain_model_processtablefield (
process_uid int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(20) DEFAULT '' NOT NULL,
description varchar(255) DEFAULT '' NOT NULL,
type smallint(5) unsigned DEFAULT '0' NOT NULL,
field_size smallint(5) unsigned DEFAULT '0' NOT NULL,
);
CREATE TABLE tx_jobrouterprocess_domain_model_step (
handle varchar(30) DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
process int(11) unsigned DEFAULT '0' NOT NULL,
step_number smallint(5) unsigned DEFAULT '0' NOT NULL,
description text,
UNIQUE KEY handle (handle),
KEY process (process)
);
CREATE TABLE tx_jobrouterprocess_domain_model_transfer(
uid int(11) unsigned NOT NULL AUTO_INCREMENT,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
step_uid int(11) unsigned DEFAULT '0' NOT NULL,
correlation_id varchar(255) DEFAULT '' NOT NULL,
initiator varchar(50) DEFAULT '' NOT NULL,
username varchar(50) DEFAULT '' NOT NULL,
jobfunction varchar(50) DEFAULT '' NOT NULL,
summary text,
priority tinyint(1) unsigned DEFAULT '0' NOT NULL,
pool smallint(5) unsigned DEFAULT '0' NOT NULL,
processtable text,
encrypted_fields tinyint(1) unsigned DEFAULT '0' NOT NULL,
start_success tinyint(1) unsigned DEFAULT '0' NOT NULL,
start_date int(11) unsigned DEFAULT '0' NOT NULL,
start_message text,
PRIMARY KEY (uid),
KEY success (start_success),
KEY success_date (start_success, start_date)
);