From 756caaa1fb29faab06f6f8e4c9258ccfc3c5d4dc Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Sat, 11 Nov 2017 00:23:19 -0800 Subject: Adding 4.5 upgrade code (#7815) --- store/sqlstore/upgrade.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/store/sqlstore/upgrade.go b/store/sqlstore/upgrade.go index edcae1244..d10235135 100644 --- a/store/sqlstore/upgrade.go +++ b/store/sqlstore/upgrade.go @@ -15,6 +15,7 @@ import ( ) const ( + VERSION_4_5_0 = "4.5.0" VERSION_4_4_0 = "4.4.0" VERSION_4_3_0 = "4.3.0" VERSION_4_2_0 = "4.2.0" @@ -58,6 +59,7 @@ func UpgradeDatabase(sqlStore SqlStore) { UpgradeDatabaseToVersion42(sqlStore) UpgradeDatabaseToVersion43(sqlStore) UpgradeDatabaseToVersion44(sqlStore) + UpgradeDatabaseToVersion45(sqlStore) // If the SchemaVersion is empty this this is the first time it has ran // so lets set it to the current version. @@ -319,3 +321,11 @@ func UpgradeDatabaseToVersion44(sqlStore SqlStore) { saveSchemaVersion(sqlStore, VERSION_4_4_0) } } + +func UpgradeDatabaseToVersion45(sqlStore SqlStore) { + //TODO: Uncomment when 4.5 is released + /*if shouldPerformUpgrade(sqlStore, VERSION_4_4_0, VERSION_4_5_0) { + + saveSchemaVersion(sqlStore, VERSION_4_5_0) + }*/ +} -- cgit v1.2.3-1-g7c22