mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
Enable SQLite secure_delete pragma.
This commit is contained in:
parent
ea8f92441c
commit
9f63be65bc
1 changed files with 1 additions and 0 deletions
|
@ -69,6 +69,7 @@ public class MessagesStorage {
|
|||
}
|
||||
try {
|
||||
database = new SQLiteDatabase(cacheFile.getPath());
|
||||
database.execute("PRAGMA secure_delete = ON");
|
||||
if (createTable) {
|
||||
database.executeFast("CREATE TABLE users(uid INTEGER PRIMARY KEY, name TEXT, status INTEGER, data BLOB)").stepThis().dispose();
|
||||
database.executeFast("CREATE TABLE messages(mid INTEGER PRIMARY KEY, uid INTEGER, read_state INTEGER, send_state INTEGER, date INTEGER, data BLOB, out INTEGER, ttl INTEGER)").stepThis().dispose();
|
||||
|
|
Loading…
Reference in a new issue