From 11d9b9db16d5d67a2e8f72e217b28e2c48ba78f1 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 5 Aug 2019 11:47:15 +0200 Subject: [PATCH] [Store] Bump database 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 ea92a6c7..7072d688 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: 9, + _db = await openDatabase(path, version: 10, onCreate: (Database db, int version) async { await createTables(db); }, onUpgrade: (Database db, int oldVersion, int newVersion) async {