revert change of index_search as varchar(255) is too small

This commit is contained in:
Alexander Bigga 2019-11-06 10:20:00 +01:00
parent a24a033069
commit 6de097eaa3
2 changed files with 3 additions and 3 deletions

View File

@ -127,9 +127,9 @@ return array (
'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:dlf/locallang.xml:tx_dlf_collections.index_search',
'config' => array (
'type' => 'input',
'type' => 'text',
'size' => 30,
'max' => 255,
'rows' => 5,
'eval' => 'trim',
),
),

View File

@ -189,7 +189,7 @@ CREATE TABLE tx_dlf_collections (
fe_group varchar(100) DEFAULT '' NOT NULL,
label varchar(255) DEFAULT '' NOT NULL,
index_name varchar(255) DEFAULT '' NOT NULL,
index_search varchar(255) DEFAULT '' NOT NULL,
index_search text NOT NULL,
oai_name varchar(255) DEFAULT '' NOT NULL,
description text NOT NULL,
thumbnail text NOT NULL,