[omemo] Set correct version on database creation

This commit is contained in:
Philipp Hörist
2019-03-25 12:22:03 +01:00
parent 82cb414761
commit c0c0a3dfdf

View File

@@ -148,7 +148,7 @@ class LiteAxolotlStore(AxolotlStore):
create_db_sql = """
BEGIN TRANSACTION;
%s
PRAGMA user_version=6;
PRAGMA user_version=8;
END TRANSACTION;
""" % (create_tables)
self._con.executescript(create_db_sql)