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
c15a5b4b
Commit
c15a5b4b
authored
Jan 29, 2021
by
Carsten Rose
Browse files
Fixes #9355. Increase column width header & attach/
parent
870b5eb5
Pipeline
#4914
passed with stages
in 3 minutes and 51 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Database/DatabaseUpdateData.php
View file @
c15a5b4b
...
...
@@ -194,8 +194,10 @@ $UPDATE_ARRAY = array(
"ALTER TABLE `FormElement` CHANGE `label` `label` VARCHAR(1023) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';"
,
],
'2
0.X
.0'
=>
[
// TODO: replace X with newest version number
'2
1.1
.0'
=>
[
"ALTER TABLE `Form` ADD `fileStats` VARCHAR(255) NOT NULL DEFAULT '' AFTER `deleted`;"
,
"ALTER TABLE `MailLog` CHANGE `header` `header` VARCHAR(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';"
,
"ALTER TABLE `MailLog` CHANGE `attach` `attach` VARCHAR(4096) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';"
,
],
);
...
...
extension/Classes/Sql/formEditor.sql
View file @
c15a5b4b
...
...
@@ -512,8 +512,8 @@ CREATE TABLE IF NOT EXISTS `MailLog`
`sender`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
`subject`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
`body`
TEXT
NOT
NULL
,
`header`
VARCHAR
(
2
55
)
NOT
NULL
DEFAULT
''
,
`attach`
VARCHAR
(
1024
)
NOT
NULL
DEFAULT
''
,
`header`
VARCHAR
(
2
048
)
NOT
NULL
DEFAULT
''
,
`attach`
VARCHAR
(
4096
)
NOT
NULL
DEFAULT
''
,
`src`
VARCHAR
(
255
)
NOT
NULL
DEFAULT
''
,
`modified`
DATETIME
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
`created`
DATETIME
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
...
...
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