TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:24 +02:00
commit aad9daaefd
1506 changed files with 94005 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE sys_refindex (
# EXT:form BE module related DatabaseService needs this index for "form usage count" lookups
# @todo: Solve differently somehow. It is essentially needed because not all form.yaml
# are FAL resources, but can be provided by extensions, too. See the registered
# softref parser for more details, too.
KEY lookup_string (ref_string(191)),
# Prevent full table scan for queries like "WHERE softref_key='formPersistenceIdentifier' and ref_uid > 0"
KEY idx_softref_key (softref_key,ref_uid)
);