X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fabstractsqlstorage.cpp;h=0ae3ebe23a5c159c7e466f70a6733542fa6f630c;hp=d53ae9e2db12ac0b2aeeed819bc0ee209edd198e;hb=25c0f8fb1b69e431cf7b231e2f61eb22dd940b5c;hpb=8426fae7e92dfb7608f66be926c68c304b97cb01 diff --git a/src/core/abstractsqlstorage.cpp b/src/core/abstractsqlstorage.cpp index d53ae9e2..0ae3ebe2 100644 --- a/src/core/abstractsqlstorage.cpp +++ b/src/core/abstractsqlstorage.cpp @@ -309,14 +309,6 @@ bool AbstractSqlStorage::upgradeDb() } } - // Update the schema version for the final step. Split this out to offer more informative - // logging (though setting schema version really should not fail). - if (!updateSchemaVersion(schemaVersion())) { - // Updating the final schema version failed, bail out - qCritical() << "Unable to upgrade Logging Backend! Setting final schema version" << schemaVersion() << "failed."; - return false; - } - // If we made it here, everything seems to have worked! return true; }