From 66ecaa88e7aa0e5dec1b0da7f4e1042c6732c97c Mon Sep 17 00:00:00 2001 From: Pere Lev Date: Thu, 14 Mar 2024 21:56:21 +0200 Subject: [PATCH] DB: Fix per-actor SQLite DB creation --- src/Database/Persist/Box/Internal.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Persist/Box/Internal.hs b/src/Database/Persist/Box/Internal.hs index 78e1b12..1769d1c 100644 --- a/src/Database/Persist/Box/Internal.hs +++ b/src/Database/Persist/Box/Internal.hs @@ -177,7 +177,7 @@ createCellIfNeeded p = do , " NOT NULL)" ] in rawExecute query [] - [Single (_ :: a)] -> pure () + [Single (_ :: String)] -> pure () _ -> error "Multiple cell tables in sqlite_master" model :: QuasiQuoter