forked from aaw-team/pagenotfoundhandling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
34 lines (31 loc) · 1.41 KB
/
Copy pathext_tables.sql
File metadata and controls
34 lines (31 loc) · 1.41 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
--
-- Table structure for table 'sys_domain'
--
CREATE TABLE sys_domain (
tx_pagenotfoundhandling_enable tinyint(3) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_default404Page int(11) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_defaultTemplateFile tinytext,
tx_pagenotfoundhandling_default403Page int(11) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_default403Header tinyint(4) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_ignoreLanguage tinyint(3) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_forceLanguage int(11) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_languageParam varchar(45) DEFAULT 'L' NOT NULL,
tx_pagenotfoundhandling_passthroughContentTypeHeader tinyint(3) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_sendXForwardedForHeader tinyint(3) DEFAULT '0' NOT NULL,
tx_pagenotfoundhandling_additionalHeaders text,
tx_pagenotfoundhandling_digestAuthentication varchar(255) DEFAULT '' NOT NULL,
);
--
-- tx_pagenotfoundhandling_history
--
CREATE TABLE tx_pagenotfoundhandling_history (
uid int(11) unsigned NOT NULL auto_increment,
time int(11) unsigned DEFAULT 0 NOT NULL,
site_identifier varchar(255),
status_code smallint unsigned DEFAULT 0 NOT NULL,
failure_reason varchar(255),
request_uri varchar(1024) DEFAULT '' NOT NULL,
referer_uri varchar(1024) DEFAULT '' NOT NULL,
user_agent varchar(1024) DEFAULT '' NOT NULL,
PRIMARY KEY (uid)
);