-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
82 lines (67 loc) · 2.13 KB
/
ext_tables.sql
File metadata and controls
82 lines (67 loc) · 2.13 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
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
#
# Table structure for table 'tx_feupload_domain_model_file'
#
CREATE TABLE tx_feupload_domain_model_file (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
file varchar(255) DEFAULT '' NOT NULL,
fe_user int(11) unsigned DEFAULT '0' NOT NULL,
fe_groups int(11) DEFAULT '0' NOT NULL,
folder int(11) DEFAULT '0' NOT NULL,
visibility int(1) DEFAULT '1' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'tx_feupload_domain_model_file_fegroup_mm'
#
CREATE TABLE tx_feupload_file_fegroup_mm (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(50) DEFAULT '' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'pages'
#
CREATE TABLE fe_groups (
feupload_storage_pid int(11) unsigned DEFAULT NULL,
);
#
# Table structure for table 'tx_feupload_domain_model_folder'
#
CREATE TABLE tx_feupload_domain_model_folder (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
fe_user int(11) unsigned DEFAULT '0' NOT NULL,
fe_groups int(11) DEFAULT '0' NOT NULL,
parent int(11) DEFAULT '0' NOT NULL,
visibility int(1) DEFAULT '1' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'tx_feupload_domain_model_folder_fegroup_mm'
#
CREATE TABLE tx_feupload_folder_fegroup_mm (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(50) DEFAULT '' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);