Skip to content
Snippets Groups Projects
Commit 0c34e345 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Extend FE.label size to 1023

parent 53b31612
No related branches found
No related tags found
1 merge request!267Develop merge
Pipeline #3495 passed
......@@ -189,6 +189,11 @@ $UPDATE_ARRAY = array(
"ALTER TABLE `Dirty` ADD `tabUniqId` VARCHAR(32) NOT NULL AFTER `recordHashMd5`;",
],
'20.5.0' => [
"ALTER TABLE `FormElement` CHANGE `label` `label` VARCHAR(1023) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';",
],
);
......
......@@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS `FormElement`
`enabled` ENUM ('yes', 'no') NOT NULL DEFAULT 'yes',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`label` VARCHAR(511) NOT NULL DEFAULT '',
`label` VARCHAR(1023) NOT NULL DEFAULT '',
`mode` ENUM ('show', 'required', 'readonly', 'hidden') NOT NULL DEFAULT 'show',
`modeSql` TEXT NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment