[Store] Increase DB version

This commit is contained in:
Marcel 2019-07-18 18:49:04 +02:00
parent eed51913c4
commit b3e8a81dfc
No known key found for this signature in database
GPG Key ID: B5E03B5BF119B26C
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class Store {
_init() async {
var databasePath = await getDatabasesPath();
String path = p.join(databasePath, "FluffyMatrix.db");
_db = await openDatabase(path, version: 5,
_db = await openDatabase(path, version: 6,
onCreate: (Database db, int version) async {
await createTables(db);
}, onUpgrade: (Database db, int oldVersion, int newVersion) async {