mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 13:56:11 +01:00
parent
2fee4ca259
commit
578751d156
3 changed files with 5 additions and 2 deletions
|
@ -179,7 +179,6 @@ return [
|
|||
'config' => [
|
||||
'type' => 'input',
|
||||
'size' => 50,
|
||||
'max' => 255,
|
||||
],
|
||||
],
|
||||
'import_features' => [
|
||||
|
|
|
@ -19,6 +19,10 @@ Features
|
|||
|
||||
* 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
|
||||
-----
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ CREATE TABLE tx_events_domain_model_import (
|
|||
region int(11) unsigned DEFAULT '0' 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,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue