forked from b13/t3ext-dam_falmigration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
31 lines (28 loc) · 710 Bytes
/
Copy pathext_tables.sql
File metadata and controls
31 lines (28 loc) · 710 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
31
#
# Table structure for table 'sys_file'
#
CREATE TABLE sys_file (
_migrateddamuid int(11) unsigned DEFAULT '0' NOT NULL,
KEY migratedRecords (_migrateddamuid)
);
#
# Table structure for table 'sys_file_collection'
#
CREATE TABLE sys_file_collection (
_migrateddamcatuid int(11) unsigned DEFAULT '0' NOT NULL,
_migrateddamselectionuid int(11) unsigned DEFAULT '0' NOT NULL
);
#
# Table structure for table 'sys_category'
#
CREATE TABLE sys_category (
_migrateddamcatuid int(11) unsigned DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tx_dam'
#
CREATE TABLE tx_dam (
_missingfile tinyint(4) unsigned DEFAULT '0' NOT NULL,
KEY deletedRecords (uid, deleted),
KEY missingFiles (_missingfile)
);