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
ce1a3871
Commit
ce1a3871
authored
Jul 15, 2020
by
Marc Egger
Browse files
Refs #10120 add column fileStats to Form Table definition
parent
ae0483ab
Pipeline
#3617
failed with stages
in 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Form/FormAsFile.php
View file @
ce1a3871
...
...
@@ -18,6 +18,7 @@ use IMATHUZH\Qfq\Core\Helper\SqlQuery;
// TODO: form list Report: when form list report is loaded, load new form files into DB and delete removed forms from DB
// TODO: Carsten Fragen: Form backups erstellen vor deleteFormFile und exportForm?
// TODO: Carsten Fragen: "git rm" anstatt "rm" benutzen falls ordner ein git repo? Einziger unterschied: macht "git add"
// TODO: Carsten Fragen: Form Copy ist broken. Aber jetzt auch unnötig, da man einfach die files kopieren kann.
// TODO: BEFOORE PRUDUCTION
// TODO: add Exception hint as hint instead of in main message?
...
...
extension/Classes/Sql/formEditor.sql
View file @
ce1a3871
...
...
@@ -45,6 +45,7 @@ CREATE TABLE IF NOT EXISTS `Form`
`deleted`
ENUM
(
'yes'
,
'no'
)
NOT
NULL
DEFAULT
'no'
,
`modified`
DATETIME
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
`created`
DATETIME
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
`fileStats`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
PRIMARY
KEY
(
`id`
),
KEY
`name`
(
`name`
),
...
...
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