Inrease Search Query

Resolves: #11487
This commit is contained in:
Daniel Siepmann (Codappix) 2024-11-04 13:18:11 +01:00
parent 2fee4ca259
commit 578751d156
SSH key fingerprint: SHA256:nAjx3Dpp8kuAC+S7QXj8BWmqw+KI1Miu+5e40BP3LXA
3 changed files with 5 additions and 2 deletions

View file

@ -179,7 +179,6 @@ return [
'config' => [ 'config' => [
'type' => 'input', 'type' => 'input',
'size' => 50, 'size' => 50,
'max' => 255,
], ],
], ],
'import_features' => [ 'import_features' => [

View file

@ -19,6 +19,10 @@ Features
* Add Support for TYPO3 v13.4 LTS. * Add Support for TYPO3 v13.4 LTS.
* Support large rest search queries.
The field no longer has a limitation.
The field is now stored as text instead of varchar.
Fixes Fixes
----- -----

View file

@ -84,7 +84,7 @@ CREATE TABLE tx_events_domain_model_import (
region int(11) unsigned DEFAULT '0' NOT NULL, region int(11) unsigned DEFAULT '0' NOT NULL,
rest_experience varchar(1024) DEFAULT '' NOT NULL, rest_experience varchar(1024) DEFAULT '' NOT NULL,
rest_search_query varchar(1024) DEFAULT '' NOT NULL, rest_search_query text,
import_features tinyint(4) DEFAULT '0' NOT NULL, import_features tinyint(4) DEFAULT '0' NOT NULL,
); );