Set omemo+openpgp database properties to be the same as main db

This commit is contained in:
fiaxh 2021-04-07 20:16:21 +02:00
parent 45c0ac4104
commit 4ce2bd8cd2
2 changed files with 15 additions and 5 deletions

View file

@ -256,12 +256,14 @@ public class Database : Qlite.Database {
session = new SessionTable(this);
content_item_meta = new ContentItemMetaTable(this);
init({identity_meta, trust, identity, signed_pre_key, pre_key, session, content_item_meta});
try {
exec("PRAGMA synchronous=0");
} catch (Error e) { }
try {
exec("PRAGMA secure_delete=1");
} catch (Error e) { }
exec("PRAGMA journal_mode = WAL");
exec("PRAGMA synchronous = NORMAL");
exec("PRAGMA secure_delete = ON");
} catch (Error e) {
error("Failed to set OMEMO database properties: %s", e.message);
}
}
public override void migrate(long oldVersion) {

View file

@ -36,6 +36,14 @@ public class Database : Qlite.Database {
this.account_setting_table = new AccountSetting(this);
this.contact_key_table = new ContactKey(this);
init({account_setting_table, contact_key_table});
try {
exec("PRAGMA journal_mode = WAL");
exec("PRAGMA synchronous = NORMAL");
exec("PRAGMA secure_delete = ON");
} catch (Error e) {
error("Failed to set OpenPGP database properties: %s", e.message);
}
}
public void set_contact_key(Jid jid, string key) {