-
Notifications
You must be signed in to change notification settings - Fork 10
/
ext_tables.sql
54 lines (46 loc) · 1.51 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
#
# Table structure for table 'tx_omcookiemanager_domain_model_cookie'
#
CREATE TABLE tx_omcookiemanager_domain_model_cookie (
cookiegroup int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
description text,
lifetime varchar(255) DEFAULT '' NOT NULL,
provider varchar(255) DEFAULT '' NOT NULL,
cookie_group int(11) unsigned DEFAULT '0',
cookie_html int(11) unsigned DEFAULT '0',
);
#
# Table structure for table 'tx_omcookiemanager_domain_model_cookiegroup'
#
CREATE TABLE tx_omcookiemanager_domain_model_cookiegroup (
name varchar(255) DEFAULT '' NOT NULL,
gtm_event_name varchar(255) DEFAULT '' NOT NULL,
description text,
essential smallint(5) unsigned DEFAULT '0' NOT NULL,
cookies int(11) unsigned DEFAULT '0' NOT NULL,
gtm_consent_grps varchar(1024) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_omcookiemanager_domain_model_cookiepanel'
#
CREATE TABLE tx_omcookiemanager_domain_model_cookiepanel (
name varchar(255) DEFAULT '' NOT NULL,
description text,
link varchar(255) DEFAULT '' NOT NULL,
groups varchar(1024) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_omcookiemanager_domain_model_cookiehtml'
#
CREATE TABLE tx_omcookiemanager_domain_model_cookiehtml (
cookie int(11) unsigned DEFAULT '0' NOT NULL,
html text,
insert_place int(11) DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'tx_omcookiemanager_domain_model_cookie'
#
CREATE TABLE tx_omcookiemanager_domain_model_cookie (
cookiegroup int(11) unsigned DEFAULT '0' NOT NULL
);