persistent-template 1.2.0.4 → 1.2.0.5
raw patch · 2 files changed
+5/−3 lines, 2 files
Files
- Database/Persist/TH.hs +4/−2
- persistent-template.cabal +1/−1
Database/Persist/TH.hs view
@@ -28,6 +28,8 @@ , share , derivePersistField , persistFieldFromEntity+ -- * Internal+ , pack' ) where import Prelude hiding ((++), take, concat, splitAt)@@ -923,8 +925,8 @@ lift (SqlNumeric x y) = [|SqlNumeric (fromInteger x') (fromInteger y')|] where- x' = fromIntegral x- y' = fromIntegral y+ x' = fromIntegral x :: Integer+ y' = fromIntegral y :: Integer lift SqlBool = [|SqlBool|] lift SqlDay = [|SqlDay|] lift SqlTime = [|SqlTime|]
persistent-template.cabal view
@@ -1,5 +1,5 @@ name: persistent-template-version: 1.2.0.4+version: 1.2.0.5 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>