-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathext_tables.sql
More file actions
30 lines (27 loc) · 814 Bytes
/
ext_tables.sql
File metadata and controls
30 lines (27 loc) · 814 Bytes
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
#
# Table structure for table 'tx_gdpr_domain_model_log'
#
CREATE TABLE tx_gdpr_domain_model_log (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
tstamp int(11) DEFAULT '0' NOT NULL,
table_name varchar(255) NOT NULL DEFAULT '',
record_id int(11) DEFAULT '0' NOT NULL,
record_label varchar(255) NOT NULL DEFAULT '',
status tinyint(4) DEFAULT '0' NOT NULL,
user int(11) DEFAULT '0' NOT NULL,
user_name_text varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'fe_users'
#
CREATE TABLE fe_users (
gdpr_restricted tinyint(4) DEFAULT '0' NOT NULL,
gdpr_randomized tinyint(4) DEFAULT '0' NOT NULL
);
CREATE TABLE be_users (
gdpr_restricted tinyint(4) DEFAULT '0' NOT NULL,
gdpr_module_enable tinyint(4) DEFAULT '0' NOT NULL
);