From 02cb6068a285250d92286a0accd74f7db1ea04cb Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sun, 27 Dec 2020 21:32:30 +0000 Subject: [PATCH] create all tables --- src/Simplex/Messaging/Agent/Store/SQLite/Schema.hs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Simplex/Messaging/Agent/Store/SQLite/Schema.hs b/src/Simplex/Messaging/Agent/Store/SQLite/Schema.hs index e5353fcc2..467fd62f8 100644 --- a/src/Simplex/Messaging/Agent/Store/SQLite/Schema.hs +++ b/src/Simplex/Messaging/Agent/Store/SQLite/Schema.hs @@ -7,13 +7,7 @@ import Database.SQLite.Simple createSchema :: Connection -> IO () createSchema conn = - mapM_ - (execute_ conn) - [ recipientQueues --, - -- senderQueues, - -- connections, - -- messages - ] + mapM_ (execute_ conn) [recipientQueues, senderQueues, connections, messages] recipientQueues :: Query recipientQueues =