persistable-record 0.0.1.0 → 0.0.1.1
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Database.Record.Instances: instance HasColumnConstraint NotNull Int
- Database.Record.Instances: instance PersistableWidth Int
+ Database.Record.Instances: instance HasColumnConstraint NotNull Int8
+ Database.Record.Instances: instance PersistableWidth Int8
Files
persistable-record.cabal view
@@ -1,5 +1,5 @@ name: persistable-record-version: 0.0.1.0+version: 0.0.1.1 synopsis: Binding between SQL database values and haskell records. description: This package contiains types to represent table constraints and interfaces to bind between SQL database values and Haskell records.
src/Database/Record/Instances.hs view
@@ -15,14 +15,14 @@ -- Single column instances for example to load schema of system catalogs. module Database.Record.Instances () where -import Data.Int (Int16, Int32, Int64)+import Data.Int (Int8, Int16, Int32, Int64) import Database.Record.TH (deriveNotNullType) $(fmap concat $ mapM deriveNotNullType [ [t| Bool |] , [t| Char |] , [t| String |]- , [t| Int |]+ , [t| Int8 |] , [t| Int16 |] , [t| Int32 |] , [t| Int64 |]