mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
post-4.3 commit (#7581)
This commit is contained in:
@@ -15,6 +15,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
VERSION_4_4_0 = "4.4.0"
|
||||
VERSION_4_3_0 = "4.3.0"
|
||||
VERSION_4_2_0 = "4.2.0"
|
||||
VERSION_4_1_0 = "4.1.0"
|
||||
@@ -56,6 +57,7 @@ func UpgradeDatabase(sqlStore SqlStore) {
|
||||
UpgradeDatabaseToVersion41(sqlStore)
|
||||
UpgradeDatabaseToVersion42(sqlStore)
|
||||
UpgradeDatabaseToVersion43(sqlStore)
|
||||
UpgradeDatabaseToVersion44(sqlStore)
|
||||
|
||||
// If the SchemaVersion is empty this this is the first time it has ran
|
||||
// so lets set it to the current version.
|
||||
@@ -308,3 +310,10 @@ func UpgradeDatabaseToVersion43(sqlStore SqlStore) {
|
||||
saveSchemaVersion(sqlStore, VERSION_4_3_0)
|
||||
}
|
||||
}
|
||||
|
||||
func UpgradeDatabaseToVersion44(sqlStore SqlStore) {
|
||||
if shouldPerformUpgrade(sqlStore, VERSION_4_3_0, VERSION_4_4_0) {
|
||||
// TODO: Uncomment following when version 4.4.0 is released
|
||||
//saveSchemaVersion(sqlStore, VERSION_4_4_0)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user