-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
33 lines (29 loc) · 1.13 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
#
# Table structure for table 'sys_file_storage'
#
CREATE TABLE sys_file_storage (
mount_point_file_type_1 int(11) unsigned DEFAULT '0' NOT NULL,
mount_point_file_type_2 int(11) unsigned DEFAULT '0' NOT NULL,
mount_point_file_type_3 int(11) unsigned DEFAULT '0' NOT NULL,
mount_point_file_type_4 int(11) unsigned DEFAULT '0' NOT NULL,
mount_point_file_type_5 int(11) unsigned DEFAULT '0' NOT NULL,
maximum_dimension_original_image varchar(24) DEFAULT '' NOT NULL,
extension_allowed_file_type_1 varchar(255) DEFAULT '' NOT NULL,
extension_allowed_file_type_2 varchar(255) DEFAULT '' NOT NULL,
extension_allowed_file_type_3 varchar(255) DEFAULT '' NOT NULL,
extension_allowed_file_type_4 varchar(255) DEFAULT '' NOT NULL,
extension_allowed_file_type_5 varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'sys_file_metadata'
#
CREATE TABLE sys_file_metadata (
related_files int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'sys_file'
#
CREATE TABLE sys_file (
# Total of references including sys_file_reference + sys_refindex (soft reference).
number_of_references int(11) unsigned DEFAULT '0' NOT NULL,
);