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
3c34e763
Commit
3c34e763
authored
Feb 24, 2017
by
Carsten Rose
Browse files
New Checktype 'allow numerical'.
parent
ed9454d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
extension/RELEASE.txt
View file @
3c34e763
ALTER TABLE FormElement MODIFY COLUMN checkType ENUM('alnumx','digit','numerical','email','min|max','min|max date','pattern','allbut','all') NOT NULL DEFAULT 'alnumx'
Version 0.13
============
Changes
-------
* Table 'FormElement'
* Modified column: 'checkType' - new value 'numerical'
ALTER TABLE FormElement MODIFY COLUMN checkType ENUM('alnumx','digit','numerical','email','min|max','min|max date',
'pattern','allbut','all') NOT NULL DEFAULT 'alnumx'
Bug Fixes
---------
* #2138 / digit sanitize: new class 'numerical' implemented.
Version 0.12
...
...
extension/qfq/tests/phpunit/fixtures/TestFormEditor.sql
View file @
3c34e763
...
...
@@ -73,7 +73,7 @@ CREATE TABLE IF NOT EXISTS `FormElement` (
'afterSave'
,
'afterInsert'
,
'afterUpdate'
,
'afterDelete'
,
'sendmail'
)
NOT
NULL
DEFAULT
'text'
,
`subrecordOption`
SET
(
'edit'
,
'delete'
,
'new'
)
NOT
NULL
DEFAULT
''
,
`checkType`
ENUM
(
'alnumx'
,
'digit'
,
'email'
,
'min|max'
,
'min|max date'
,
'pattern'
,
'all'
)
NOT
NULL
DEFAULT
'alnumx'
,
`checkType`
ENUM
(
'alnumx'
,
'digit'
,
'numerical'
,
'email'
,
'min|max'
,
'min|max date'
,
'pattern'
,
'all'
)
NOT
NULL
DEFAULT
'alnumx'
,
`checkPattern`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
...
...
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