We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96dcbf7 commit d8b477bCopy full SHA for d8b477b
compliance-monitor/sql.py
@@ -199,8 +199,8 @@ def db_upgrade_schema(conn: connection, cur: cursor):
199
if current is None:
200
# this is an empty db, but it also used to be the case with v1
201
# I (mbuechse) made sure manually that the value v1 is set on running installations
202
- db_ensure_schema_v3(cur)
203
- db_set_schema_version(cur, 'v3')
+ db_ensure_schema_v4(cur)
+ db_set_schema_version(cur, 'v4')
204
conn.commit()
205
elif current == 'v1':
206
db_ensure_schema_v2(cur)
0 commit comments