TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:28 +02:00
commit 3a4ca58ca1
90 changed files with 9646 additions and 0 deletions
+27
View File
@@ -0,0 +1,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
);