From e8abea40d803719fbbac51abd410feff4d93294d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Pedersen?= Date: Thu, 29 Aug 2024 20:14:53 +0200 Subject: [PATCH] Update db version --- lib/core/database.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/database.dart b/lib/core/database.dart index 46b51df..9653987 100644 --- a/lib/core/database.dart +++ b/lib/core/database.dart @@ -8,7 +8,7 @@ class DatabaseHelper { DatabaseHelper._internal(); static Database? _database; - static const int _databaseVersion = 3; // Incremented version + static const int _databaseVersion = 4; // Incremented version Future get database async { if (_database != null) return _database!;