-
Notifications
You must be signed in to change notification settings - Fork 13
/
ext_tables.sql
executable file
·137 lines (100 loc) · 5.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
CREATE TABLE tx_mindshapecookieconsent_domain_model_configuration (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`site` varchar(255) DEFAULT '' NOT NULL,
`enable_statistic` tinyint(4) unsigned DEFAULT '0' NOT NULL,
`header` varchar(255) DEFAULT '' NOT NULL,
`imprint` varchar(255) DEFAULT '' NOT NULL,
`datapolicy` varchar(255) DEFAULT '' NOT NULL,
`hint` text,
`necessary_cookies_info` text,
`necessary_cookie_options` varchar(255) DEFAULT '' NOT NULL,
`select_all_label` varchar(255) DEFAULT '' NOT NULL,
`save_label` varchar(255) DEFAULT '' NOT NULL,
`deny_label` varchar(255) DEFAULT '' NOT NULL,
`show_details_label` varchar(255) DEFAULT '' NOT NULL,
`hide_details_label` varchar(255) DEFAULT '' NOT NULL,
`cookie_categories` int(11) unsigned DEFAULT '0',
`hidden` tinyint(4) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
`l10n_source` int(11) DEFAULT '0' NOT NULL,
`l10n_parent` int(11) DEFAULT '0' NOT NULL,
`l10n_diffsource` mediumblob,
PRIMARY KEY (`uid`),
KEY parent(`pid`),
KEY language(`l10n_parent`, `sys_language_uid`)
);
CREATE TABLE tx_mindshapecookieconsent_domain_model_cookiecategory (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`sorting` int(11) unsigned DEFAULT '0' NOT NULL,
`configuration` int(11) unsigned DEFAULT '0' NOT NULL,
`label` varchar(255) DEFAULT '' NOT NULL,
`info` text,
`cookie_options` int(11) unsigned DEFAULT '0',
`hidden` tinyint(4) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
`l10n_source` int(11) DEFAULT '0' NOT NULL,
`l10n_parent` int(11) DEFAULT '0' NOT NULL,
`l10n_diffsource` mediumblob,
PRIMARY KEY (`uid`),
KEY parent(`pid`),
KEY language(`l10n_parent`, `sys_language_uid`)
);
CREATE TABLE tx_mindshapecookieconsent_domain_model_cookieoption (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`sorting` int(11) unsigned DEFAULT '0' NOT NULL,
`cookie_category` int(11) unsigned DEFAULT '0' NOT NULL,
`label` varchar(255) DEFAULT '' NOT NULL,
`identifier` varchar(255) DEFAULT '' NOT NULL,
`consent_mode` varchar(255) DEFAULT '' NOT NULL,
`provider` varchar(255) DEFAULT '' NOT NULL,
`purpose` varchar(255) DEFAULT '' NOT NULL,
`cookie_name` varchar(255) DEFAULT '' NOT NULL,
`cookie_duration` varchar(255) DEFAULT '' NOT NULL,
`replacement_label` varchar(255) DEFAULT '' NOT NULL,
`info` text,
`hidden` tinyint(4) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
`l10n_source` int(11) DEFAULT '0' NOT NULL,
`l10n_parent` int(11) DEFAULT '0' NOT NULL,
`l10n_diffsource` mediumblob,
PRIMARY KEY (`uid`),
KEY parent(`pid`),
KEY language(`l10n_parent`, `sys_language_uid`)
);
CREATE TABLE tx_mindshapecookieconsent_domain_model_statisticcategory (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`configuration` int(11) unsigned DEFAULT '0' NOT NULL,
`date` date DEFAULT NULL,
`cookie_category` int(11) unsigned DEFAULT '0' NOT NULL,
`counter` int(11) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (`uid`),
KEY parent(`pid`)
);
CREATE TABLE tx_mindshapecookieconsent_domain_model_statisticoption (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`configuration` int(11) unsigned DEFAULT '0' NOT NULL,
`date` date DEFAULT NULL,
`cookie_option` int(11) unsigned DEFAULT '0' NOT NULL,
`counter` int(11) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (`uid`),
KEY parent(`pid`)
);
CREATE TABLE tx_mindshapecookieconsent_domain_model_statisticbutton (
`uid` int(11) NOT NULL auto_increment,
`pid` int(11) DEFAULT '0' NOT NULL,
`configuration` int(11) unsigned DEFAULT '0' NOT NULL,
`date` date DEFAULT NULL,
`save` int(11) unsigned DEFAULT '0' NOT NULL,
`deny` int(11) unsigned DEFAULT '0' NOT NULL,
`agree_to_all` int(11) unsigned DEFAULT '0' NOT NULL,
`sys_language_uid` int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (`uid`),
KEY parent(`pid`)
);