From 12501673d0c70120eebeac633e5072b2e7a2174d Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 5 Oct 2017 11:50:49 -0700 Subject: post-4.3 commit (#7581) --- store/sqlstore/upgrade.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/store/sqlstore/upgrade.go b/store/sqlstore/upgrade.go index 64d5b0763..657cc31e6 100644 --- a/store/sqlstore/upgrade.go +++ b/store/sqlstore/upgrade.go @@ -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) + } +} -- cgit v1.2.3-1-g7c22