forked from bobosch/ods_redirects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
24 lines (23 loc) · 863 Bytes
/
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
#
# Table structure for table 'tx_odsredirects_redirects'
#
CREATE TABLE tx_odsredirects_redirects (
uid int(10) unsigned NOT NULL auto_increment,
pid int(10) unsigned DEFAULT '0' NOT NULL,
tstamp int(10) unsigned DEFAULT '0' NOT NULL,
crdate int(10) unsigned DEFAULT '0' NOT NULL,
cruser_id int(10) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(3) unsigned DEFAULT '0' NOT NULL,
domain_id int(10) unsigned DEFAULT '0' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
mode tinyint(3) unsigned DEFAULT '0' NOT NULL,
destination varchar(255) DEFAULT '' NOT NULL,
append tinyint(3) unsigned DEFAULT '0' NOT NULL,
has_moved tinyint(3) unsigned DEFAULT '0' NOT NULL,
last_referer varchar(255) DEFAULT '' NOT NULL,
counter int(10) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY mode (mode),
UNIQUE url (url,mode,domain_id)
);