-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathext_tables.sql
More file actions
40 lines (35 loc) · 1.39 KB
/
ext_tables.sql
File metadata and controls
40 lines (35 loc) · 1.39 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
35
36
37
38
39
40
/*
* Copyright (c) 2021.
*
* @category TYPO3
*
* @copyright 2021 Dirk Persky (https://github.com/DirkPersky)
* @author Dirk Persky <info@dp-wired.de>
* @license MIT
*/
CREATE TABLE tx_dpcookieconsent_domain_model_cookie
(
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
category varchar(255) DEFAULT '' NOT NULL,
category_name varchar(255) DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
description varchar(255) DEFAULT '' NOT NULL,
description_long text,
duration varchar(255) DEFAULT '' NOT NULL,
duration_time varchar(255) DEFAULT '' NOT NULL,
vendor varchar(255) DEFAULT '' NOT NULL,
vendor_link varchar(255) DEFAULT '' NOT NULL,
script_src varchar(255) DEFAULT '' NOT NULL,
script text,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) DEFAULT '0' NOT NULL,
hidden tinyint(4) DEFAULT '0' NOT NULL,
starttime int(11) unsigned DEFAULT '0' NOT NULL,
endtime int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
);