[Store] Bump database version

This commit is contained in:
Christian Pauly 2019-08-05 11:47:15 +02:00
parent 8c4e75d268
commit 11d9b9db16

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: 9,
_db = await openDatabase(path, version: 10,
onCreate: (Database db, int version) async {
await createTables(db);
}, onUpgrade: (Database db, int oldVersion, int newVersion) async {