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

Do run all deltas up to missing delta 10

parent d2ca2408
No related branches found
No related tags found
No related merge requests found
......@@ -550,10 +550,6 @@ def prepare_database(db_conn):
"Cannot use this database as it is too " +
"new for the server to understand"
)
elif user_version < 10:
raise UpgradeDatabaseException(
"No delta for versions less than 10"
)
elif user_version < SCHEMA_VERSION:
logger.info(
"Upgrading database from version %d",
......@@ -562,6 +558,10 @@ def prepare_database(db_conn):
# Run every version since after the current version.
for v in range(user_version + 1, SCHEMA_VERSION + 1):
if v == 10:
raise UpgradeDatabaseException(
"No delta for version 10"
)
sql_script = read_schema("delta/v%d" % (v))
c.executescript(sql_script)
......
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