-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
60 lines (56 loc) · 1.79 KB
/
ext_tables.sql
File metadata and controls
60 lines (56 loc) · 1.79 KB
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
CREATE TABLE tx_pathfinder_domain_model_cache (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
rootpage int(11) DEFAULT '0' NOT NULL,
mpvar tinytext,
path text NOT NULL,
dependencies tinytext,
sys_language_uid int(11) DEFAULT '0',
tstamp int(11) unsigned DEFAULT '0',
crdate int(11) unsigned DEFAULT '0',
deleted tinyint(4) unsigned DEFAULT '0',
hidden tinyint(4) unsigned DEFAULT '0',
starttime int(11) DEFAULT '0',
endtime int(11) DEFAULT '0',
l18n_parent int(11) DEFAULT '0',
l18n_diffsource mediumblob,
PRIMARY KEY (uid),
KEY path1 (rootpage,path(255)),
KEY path2 (pid,sys_language_uid,rootpage),
UNIQUE INDEX path3 (pid,path(255),sys_language_uid,rootpage)
) ENGINE=InnoDB;
CREATE TABLE tx_pathfinder_domain_model_cachehistory (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
rootpage int(11) DEFAULT '0' NOT NULL,
mpvar tinytext,
path text NOT NULL,
sys_language_uid int(11) DEFAULT '0',
tstamp int(11) unsigned DEFAULT '0',
crdate int(11) unsigned DEFAULT '0',
deleted tinyint(4) unsigned DEFAULT '0',
hidden tinyint(4) unsigned DEFAULT '0',
starttime int(11) DEFAULT '0',
endtime int(11) DEFAULT '0',
l18n_parent int(11) DEFAULT '0',
l18n_diffsource mediumblob,
PRIMARY KEY (uid),
KEY path1 (rootpage,path(255)),
KEY path2 (pid,sys_language_uid,rootpage),
UNIQUE INDEX path3 (pid,path(255),sys_language_uid,rootpage)
) ENGINE=InnoDB;
CREATE TABLE tx_pathfinder_domain_model_meta (
ns tinytext NOT NULL,
hash tinytext NOT NULL
value text,
PRIMARY KEY (hash(255))
) ENGINE=InnoDB;
CREATE TABLE tx_pathfinder_domain_model_404 (
uid int(11) NOT NULL auto_increment,
counter int(11) DEFAULT '1',
path text NOT NULL,
PRIMARY KEY (uid),
) ENGINE=InnoDB;
CREATE TABLE pages (
tx_pathfinder_exclude int(1) DEFAULT '0' NOT NULL,
);