diff --git a/eventful-sqlite.cabal b/eventful-sqlite.cabal
--- a/eventful-sqlite.cabal
+++ b/eventful-sqlite.cabal
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           eventful-sqlite
-version:        0.1.1
+version:        0.1.2
 synopsis:       SQLite implementations for eventful
 description:    SQLite implementations for eventful
 category:       Database,Eventsourcing,SQLite
@@ -27,7 +27,6 @@
 library
   hs-source-dirs:
       src
-  default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
   ghc-options: -Wall
   build-depends:
       base >= 4.9 && < 5
@@ -37,7 +36,6 @@
     , bytestring
     , mtl
     , persistent
-    , persistent-sqlite
     , text
     , uuid
   exposed-modules:
@@ -50,7 +48,6 @@
   hs-source-dirs:
       tests
       src
-  default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
   ghc-options: -Wall
   build-depends:
       base >= 4.9 && < 5
@@ -60,12 +57,12 @@
     , bytestring
     , mtl
     , persistent
-    , persistent-sqlite
     , text
     , uuid
     , hspec
     , HUnit
     , eventful-test-helpers
+    , persistent-sqlite
   other-modules:
       Eventful.Store.SqliteSpec
       HLint
@@ -77,7 +74,6 @@
   main-is: HLint.hs
   hs-source-dirs:
       tests
-  default-extensions: ConstraintKinds DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving MultiParamTypeClasses OverloadedStrings QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies
   ghc-options: -Wall
   build-depends:
       base >= 4.9 && < 5
@@ -87,7 +83,6 @@
     , bytestring
     , mtl
     , persistent
-    , persistent-sqlite
     , text
     , uuid
     , hlint
diff --git a/src/Eventful/Store/Sqlite.hs b/src/Eventful/Store/Sqlite.hs
--- a/src/Eventful/Store/Sqlite.hs
+++ b/src/Eventful/Store/Sqlite.hs
@@ -1,3 +1,7 @@
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE RecordWildCards #-}
+{-# LANGUAGE TypeFamilies #-}
+
 -- | Defines an Sqlite event store.
 
 module Eventful.Store.Sqlite
@@ -26,7 +30,7 @@
   let
     getLatestVersion = sqlMaxEventVersion config maxSqliteVersionSql
     getEvents = sqlGetAggregateEvents config
-    storeEvents' = sqlStoreEvents config maxSqliteVersionSql
+    storeEvents' = sqlStoreEvents config Nothing maxSqliteVersionSql
     storeEvents = transactionalExpectedWriteHelper getLatestVersion storeEvents'
   in EventStore{..}
 
diff --git a/tests/Eventful/Store/SqliteSpec.hs b/tests/Eventful/Store/SqliteSpec.hs
--- a/tests/Eventful/Store/SqliteSpec.hs
+++ b/tests/Eventful/Store/SqliteSpec.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE OverloadedStrings #-}
+
 module Eventful.Store.SqliteSpec (spec) where
 
 import Database.Persist.Sqlite
