-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathext_tables.sql
More file actions
32 lines (28 loc) · 771 Bytes
/
ext_tables.sql
File metadata and controls
32 lines (28 loc) · 771 Bytes
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
#
# Table structure for table "pages"
#
CREATE TABLE pages (
tx_cooluri_exclude tinyint(1) unsigned default '0',
tx_cooluri_excludealways tinyint(1) unsigned default '0'
);
CREATE TABLE link_cache (
id int(10) unsigned NOT NULL auto_increment,
params blob,
url char(255),
tstamp TIMESTAMP NOT NULL default CURRENT_TIMESTAMP,
crdatetime datetime default NULL,
sticky tinyint(1) unsigned default 0,
PRIMARY KEY (id),
KEY url (url(255)),
KEY params (params(255))
);
CREATE TABLE link_oldlinks (
id int(10) unsigned NOT NULL auto_increment,
link_id int(10) unsigned NOT NULL default 0,
url char(255),
tstamp timestamp NOT NULL default CURRENT_TIMESTAMP,
sticky tinyint(1) unsigned default 0,
PRIMARY KEY (id),
UNIQUE KEY id (id),
KEY url (url(255))
);