Skip to content
Snippets Groups Projects
Commit 761efbb7 authored by Carsten  Rose's avatar Carsten Rose Committed by bbaer
Browse files

Increased Formelement.label from 255 to 511

parent 66eec0a7
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,10 @@ $UPDATE_ARRAY = array(
"ALTER TABLE `FormElement` CHANGE `checkType` `checkType` ENUM('alnumx','digit','numerical','email','pattern','allbut','all') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'alnumx';",
],
'0.25.12' => [
"ALTER TABLE `FormElement` CHANGE `label` `label` VARCHAR(511) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT ''",
],
);
......
......@@ -71,7 +71,7 @@ CREATE TABLE IF NOT EXISTS `FormElement` (
`enabled` ENUM('yes', 'no') NOT NULL DEFAULT 'yes',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`label` VARCHAR(255) NOT NULL DEFAULT '',
`label` VARCHAR(511) 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