Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
761efbb7
Commit
761efbb7
authored
Feb 08, 2018
by
Carsten Rose
Committed by
bbaer
Mar 01, 2018
Browse files
Increased Formelement.label from 255 to 511
parent
66eec0a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/database/DatabaseUpdateData.php
View file @
761efbb7
...
...
@@ -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 ''"
,
],
);
...
...
extension/qfq/sql/formEditor.sql
View file @
761efbb7
...
...
@@ -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
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment