diff --git a/store/sqlstore/upgrade.go b/store/sqlstore/upgrade.go index b4574c1b80..056f6f5c8b 100644 --- a/store/sqlstore/upgrade.go +++ b/store/sqlstore/upgrade.go @@ -18,7 +18,7 @@ import ( ) const ( - CURRENT_SCHEMA_VERSION = VERSION_5_24_0 + CURRENT_SCHEMA_VERSION = VERSION_5_25_0 VERSION_5_26_0 = "5.26.0" VERSION_5_25_0 = "5.25.0" VERSION_5_24_0 = "5.24.0" @@ -809,10 +809,9 @@ func upgradeDatabaseToVersion524(sqlStore SqlStore) { } func upgradeDatabaseToVersion525(sqlStore SqlStore) { - // TODO: uncomment when the time arrive to upgrade the DB for 5.25 - //if shouldPerformUpgrade(sqlStore, VERSION_5_24_0, VERSION_5_25_0) { - //saveSchemaVersion(sqlStore, VERSION_5_25_0) - //} + if shouldPerformUpgrade(sqlStore, VERSION_5_24_0, VERSION_5_25_0) { + saveSchemaVersion(sqlStore, VERSION_5_25_0) + } } func upgradeDatabaseToVersion526(sqlStore SqlStore) {