Skip to content
Snippets Groups Projects
Commit b41dc687 authored by Erik Johnston's avatar Erik Johnston
Browse files

We purposefully don't have a version 14 delta script.

parent 2de5b14f
No related branches found
No related tags found
No related merge requests found
...@@ -633,7 +633,7 @@ def prepare_database(db_conn): ...@@ -633,7 +633,7 @@ def prepare_database(db_conn):
# Run every version since after the current version. # Run every version since after the current version.
for v in range(user_version + 1, SCHEMA_VERSION + 1): for v in range(user_version + 1, SCHEMA_VERSION + 1):
if v == 10: if v in (10, 14,):
raise UpgradeDatabaseException( raise UpgradeDatabaseException(
"No delta for version 10" "No delta for version 10"
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment