From 98d22aaedd7baca7c55c47bfa96b492adc33683b Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 26 Jul 2019 11:06:33 +0200 Subject: [PATCH] [Store] Back to prev db version --- lib/src/Store.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Store.dart b/lib/src/Store.dart index b5fc341..df628a6 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -55,7 +55,7 @@ class Store { _init() async { var databasePath = await getDatabasesPath(); String path = p.join(databasePath, "FluffyMatrix.db"); - _db = await openDatabase(path, version: 11, + _db = await openDatabase(path, version: 8, onCreate: (Database db, int version) async { await createTables(db); }, onUpgrade: (Database db, int oldVersion, int newVersion) async {