This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
64 lines (57 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
tx_extracache_cleanerstrategies text NOT NULL,
tx_extracache_events text NOT NULL,
) ENGINE=InnoDB;
#
# Table structure for table 'tx_ncstaticfilecache_file'
#
CREATE TABLE tx_ncstaticfilecache_file (
tx_extracache_grouplist tinytext NOT NULL
);
#
# Table structure for table 'cache_pages'
#
CREATE TABLE cache_pages (
tx_extracache_grouplist varchar(255) DEFAULT '0,-1' NOT NULL
);
#
# Table structure for table 'tx_extracache_fileremovequeue'
#
CREATE TABLE tx_extracache_fileremovequeue (
id int(11) NOT NULL auto_increment,
tstamp int(11) DEFAULT '0' NOT NULL,
files text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
#
# Table structure for table 'tx_extracache_eventlog'
#
CREATE TABLE tx_extracache_eventlog (
id int(11) NOT NULL auto_increment,
event_key varchar(255) NOT NULL default '',
start_time int(11) DEFAULT '0' NOT NULL,
stop_time int(11) DEFAULT '0' NOT NULL,
infos text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
#
# Table structure for table 'tx_extracache_eventqueue'
#
CREATE TABLE tx_extracache_eventqueue (
id int(11) NOT NULL auto_increment,
event_key varchar(255) NOT NULL default '',
event_interval int(11) DEFAULT '0' NOT NULL,
first_called_time int(11) DEFAULT '0' NOT NULL,
status int(1) DEFAULT '0' NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
#
# Table structure for table 'sys_log'
# enlarge db-field (because error-messages of this extension can be bigger than 255 chars)
#
CREATE TABLE sys_log (
details text NOT NULL,
) ENGINE=InnoDB;