-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathext_tables.sql
More file actions
27 lines (24 loc) · 825 Bytes
/
ext_tables.sql
File metadata and controls
27 lines (24 loc) · 825 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
CREATE TABLE tx_impexp_presets (
# type=passthrough fields need manual configuration
title varchar(255) DEFAULT '' NOT NULL,
public tinyint(3) DEFAULT '0' NOT NULL,
item_uid int(11) DEFAULT '0' NOT NULL,
user_uid int(11) unsigned DEFAULT '0' NOT NULL,
preset_data blob,
KEY lookup (item_uid)
);
# Some fields need manual configuration
CREATE TABLE tt_content (
# type=passthrough fields need manual configuration
tx_impexp_origuid int(11) DEFAULT '0' NOT NULL
);
# Some fields need manual configuration
CREATE TABLE pages (
# type=passthrough fields need manual configuration
tx_impexp_origuid int(11) DEFAULT '0' NOT NULL
);
# Some fields need manual configuration
CREATE TABLE sys_template (
# type=passthrough fields need manual configuration
tx_impexp_origuid int(11) DEFAULT '0' NOT NULL
);