Skip to content
GitLab
Menu
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
a6b2154a
Commit
a6b2154a
authored
Apr 06, 2017
by
Carsten Rose
Browse files
Manual.rst: fixed wrong statement.
formEditor.sql: added 'on update current timestamp'.
parent
39b7cb72
Changes
2
Show whitespace changes
Inline
Side-by-side
extension/Documentation/Manual.rst
View file @
a6b2154a
...
...
@@ -2050,7 +2050,7 @@ A typical name for such an 'upload'-FormElement, to show that the name does not
* *sqlAfter*: fired after all previous queries have been fired. Might update the new created id to a primary record. E.g.::
sql
Upda
te={{UPDATE Person SET noteIdPicture = {{slaveId}} WHERE id={{id:R0}} LIMIT 1 }}
sql
Af
te
r
={{UPDATE Person SET noteIdPicture = {{slaveId}} WHERE id={{id:R0}} LIMIT 1 }}
...
...
extension/qfq/sql/formEditor.sql
View file @
a6b2154a
...
...
@@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `Form` (
`parameter`
TEXT
NOT
NULL
,
`deleted`
ENUM
(
'yes'
,
'no'
)
NOT
NULL
DEFAULT
'no'
,
`modified`
TIMESTAMP
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
`modified`
TIMESTAMP
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
`created`
DATETIME
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
PRIMARY
KEY
(
`id`
),
...
...
@@ -100,7 +100,7 @@ CREATE TABLE IF NOT EXISTS `FormElement` (
`feGroup`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
`deleted`
ENUM
(
'yes'
,
'no'
)
NOT
NULL
DEFAULT
'no'
,
`modified`
TIMESTAMP
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
`modified`
TIMESTAMP
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
`created`
DATETIME
NOT
NULL
DEFAULT
'0000-00-00 00:00:00'
,
PRIMARY
KEY
(
`id`
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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