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
09c40965
Commit
09c40965
authored
Jan 06, 2020
by
Carsten Rose
Browse files
Merge branch 'develop' into 'master'
Develop See merge request
!234
parents
1cf6fd11
a2df60c1
Pipeline
#3107
passed with stages
in 1 minute and 54 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Database/DatabaseUpdate.php
View file @
09c40965
...
...
@@ -137,10 +137,6 @@ class DatabaseUpdate {
$versionInfo
=
$this
->
getDatabaseVersion
();
$old
=
$versionInfo
[
QFQ_VERSION_KEY
]
??
false
;
if
(
version_compare
(
$old
,
'19.9.0'
)
===
-
1
)
{
$this
->
updateSpecialColumns
();
}
if
(
$dbUpdate
===
SYSTEM_DB_UPDATE_ALWAYS
||
(
$dbUpdate
===
SYSTEM_DB_UPDATE_AUTO
&&
$new
!=
$old
))
{
$newFunctionHash
=
$this
->
updateSqlFunctions
(
$versionInfo
[
QFQ_VERSION_KEY_FUNCTION_HASH
]
??
''
);
...
...
@@ -164,6 +160,11 @@ class DatabaseUpdate {
// A complete new installation get's some extra tables
$this
->
db
->
playSqlFile
(
__DIR__
.
'/../../Sql/customTable.sql'
);
}
if
(
version_compare
(
$old
,
'19.9.0'
)
===
-
1
)
{
$this
->
updateSpecialColumns
();
}
}
/**
...
...
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