fix: don't prevent greater minor version DBs from opening

This commit is contained in:
Travis Abendshien
2026-07-12 20:58:53 -07:00
parent a1dfa62e4a
commit 49b450c3a4
@@ -596,7 +596,7 @@ class Library:
session.commit()
logger.info(f"[Library][Migration][{v}] Completed DB Migration")
assert loaded_db_version == DB_VERSION, (
assert loaded_db_version >= DB_VERSION, (
"Ran all migrations, but the DB is still not on the newest version"
)
logger.info(f"[Library] Library migrated to DB version {DB_VERSION}")