From c2c93c2da9ee808b9c97bb4453c91ab7b7ca51c9 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 8 Aug 2019 14:09:11 +0200 Subject: [PATCH] [Store] Bump 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 4168643..3afdc2b 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -58,7 +58,7 @@ class Store { _init() async { var databasePath = await getDatabasesPath(); String path = p.join(databasePath, "FluffyMatrix.db"); - _db = await openDatabase(path, version: 12, + _db = await openDatabase(path, version: 13, onCreate: (Database db, int version) async { await createTables(db); }, onUpgrade: (Database db, int oldVersion, int newVersion) async {