diff --git a/Configuration/TCA/tx_events_domain_model_import.php b/Configuration/TCA/tx_events_domain_model_import.php
index bd987ec..5bdbd15 100644
--- a/Configuration/TCA/tx_events_domain_model_import.php
+++ b/Configuration/TCA/tx_events_domain_model_import.php
@@ -179,7 +179,6 @@ return [
             'config' => [
                 'type' => 'input',
                 'size' => 50,
-                'max' => 255,
             ],
         ],
         'import_features' => [
diff --git a/Documentation/Changelog/5.0.0.rst b/Documentation/Changelog/5.0.0.rst
index d125983..4df4b54 100644
--- a/Documentation/Changelog/5.0.0.rst
+++ b/Documentation/Changelog/5.0.0.rst
@@ -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
 -----
 
diff --git a/ext_tables.sql b/ext_tables.sql
index 45178cd..3fabde0 100644
--- a/ext_tables.sql
+++ b/ext_tables.sql
@@ -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,
 );