We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9294164 + 5e6a0fa commit 3933b82Copy full SHA for 3933b82
4 files changed
beam-automigrate.cabal
@@ -40,7 +40,7 @@ library
40
41
hs-source-dirs: src
42
build-depends:
43
- aeson >=1.4.4 && <2.2
+ aeson >=1.4.4 && <2.3
44
, base >=4.9 && <5
45
, beam-core >=0.9 && <0.11
46
, beam-postgres >=0.5 && <0.6
@@ -50,9 +50,9 @@ library
50
, dlist >=0.8.0 && <1.1
51
, microlens >=0.4.10 && <0.6
52
, mtl >=2.2.2 && <2.4
53
- , postgresql-simple >=0.5.4 && <0.7.0.0
+ , postgresql-simple >=0.5.4 && <0.7.1.0
54
, pretty-simple >=2.2.0 && <4.2
55
- , QuickCheck >=2.13 && <2.15
+ , QuickCheck >=2.13 && <2.18
56
, quickcheck-instances >=0.3 && <0.4
57
, scientific >=0.3.6 && <0.5
58
, splitmix >=0.0.3 && <0.2
@@ -61,7 +61,7 @@ library
61
, time >=1.8.0 && <2
62
, transformers >=0.5.6 && <0.7
63
, uuid >=1.3 && <1.4
64
- , vector >=0.12.0.3 && <0.13.0.0
+ , vector >=0.12.0.3 && <0.14.0.0
65
66
default-language: Haskell2010
67
default-extensions:
src/Database/Beam/AutoMigrate.hs
@@ -60,6 +60,7 @@ module Database.Beam.AutoMigrate
60
where
import Control.Exception
+import Control.Monad (when, forM_)
import Control.Monad.Except
import Control.Monad.Identity (runIdentity)
import Control.Monad.State.Strict
src/Database/Beam/AutoMigrate/Postgres.hs
@@ -10,6 +10,7 @@ module Database.Beam.AutoMigrate.Postgres
10
)
11
12
13
+import Control.Monad (guard)
14
import Control.Monad.State
15
import Data.Bits (shiftR, (.&.))
16
import Data.ByteString (ByteString)
src/Database/Beam/AutoMigrate/Util.hs
@@ -5,6 +5,7 @@ module Database.Beam.AutoMigrate.Util where
5
6
import Control.Applicative.Lift
7
8
+import Control.Monad.Trans.Class (lift)
9
import Data.Char
import Data.Functor.Constant
import Data.Set (Set)
0 commit comments