persistable-record 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+5/−5 lines, 2 files
Files
persistable-record.cabal view
@@ -1,5 +1,5 @@ name: persistable-record-version: 0.1.0.0+version: 0.1.0.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/TH.hs view
@@ -19,7 +19,7 @@ defineRecordDefault, -- * Deriving class symbols- derivingEq, derivingShow, derivingRead, derivingData, derivingTypable,+ derivingEq, derivingShow, derivingRead, derivingData, derivingTypeable, -- * Table constraint specified by key defineHasColumnConstraintInstance,@@ -179,9 +179,9 @@ derivingData :: ConName derivingData = conCamelcaseName "Data" --- | Name to specify deriving 'Typable'-derivingTypable :: ConName-derivingTypable = conCamelcaseName "Typable"+-- | Name to specify deriving 'Typeable'+derivingTypeable :: ConName+derivingTypeable = conCamelcaseName "Typeable" -- | Record type width expression template. recordWidthTemplate :: TypeQ -- ^ Record type constructor.