From 770da500783b098de3721cc9c72a32dc216f3e59 Mon Sep 17 00:00:00 2001 From: Elvis Lee Date: Fri, 6 Dec 2019 14:59:12 +0800 Subject: [PATCH] [Fix] table not found exception. --- moor/lib/src/web/web_db.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/moor/lib/src/web/web_db.dart b/moor/lib/src/web/web_db.dart index 34592a79..6fc232cf 100644 --- a/moor/lib/src/web/web_db.dart +++ b/moor/lib/src/web/web_db.dart @@ -68,6 +68,7 @@ class _WebDelegate extends DatabaseDelegate { @override Future runCustom(String statement, List args) { _db.runWithArgs(statement, args); + _storeDb(); return Future.value(); }