Add preparatory upgrade code for 5.5.0 (#9479)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
a551b375fa
Коммит
006623e0f7
@@ -15,6 +15,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
VERSION_5_5_0 = "5.5.0"
|
||||||
VERSION_5_4_0 = "5.4.0"
|
VERSION_5_4_0 = "5.4.0"
|
||||||
VERSION_5_3_0 = "5.3.0"
|
VERSION_5_3_0 = "5.3.0"
|
||||||
VERSION_5_2_0 = "5.2.0"
|
VERSION_5_2_0 = "5.2.0"
|
||||||
@@ -86,6 +87,7 @@ func UpgradeDatabase(sqlStore SqlStore) {
|
|||||||
UpgradeDatabaseToVersion52(sqlStore)
|
UpgradeDatabaseToVersion52(sqlStore)
|
||||||
UpgradeDatabaseToVersion53(sqlStore)
|
UpgradeDatabaseToVersion53(sqlStore)
|
||||||
UpgradeDatabaseToVersion54(sqlStore)
|
UpgradeDatabaseToVersion54(sqlStore)
|
||||||
|
UpgradeDatabaseToVersion55(sqlStore)
|
||||||
|
|
||||||
// If the SchemaVersion is empty this this is the first time it has ran
|
// If the SchemaVersion is empty this this is the first time it has ran
|
||||||
// so lets set it to the current version.
|
// so lets set it to the current version.
|
||||||
@@ -504,3 +506,11 @@ func UpgradeDatabaseToVersion54(sqlStore SqlStore) {
|
|||||||
saveSchemaVersion(sqlStore, VERSION_5_4_0)
|
saveSchemaVersion(sqlStore, VERSION_5_4_0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func UpgradeDatabaseToVersion55(sqlStore SqlStore) {
|
||||||
|
// TODO: Uncomment following condition when version 5.5.0 is released
|
||||||
|
// if shouldPerformUpgrade(sqlStore, VERSION_5_4_0, VERSION_5_5_0) {
|
||||||
|
|
||||||
|
// saveSchemaVersion(sqlStore, VERSION_5_5_0)
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user