| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Composite.Opaleye.RecordTable
- class DefaultRecTableField write read where
- class DefaultRecTable write read where
Documentation
class DefaultRecTableField write read where Source #
Helper typeclass which picks which of required or optional to use for a pair of write column type and read column type.
DefaultRecTableField (Maybe (Column a)) (Column a) uses optional.
DefaultRecTableField (Column a) (Column a) uses required.
Minimal complete definition
Methods
defaultRecTableField :: String -> TableProperties write read Source #
class DefaultRecTable write read where Source #
Type class for producing a default TableProperties schema for some expected record types. required and optional are chosen automatically and the
column is named after the record fields, using NamedField to reflect the field names.
For example, given:
type WriteRec = Record '["id" :-> Maybe (Column PGInt8), "name" :-> Column PGText] type ReadRec = Record '["id" :-> Column PGInt8 , "name" :-> Column PGText]
This:
defaultRecTable :: TableProperties WriteRec ReadRec
Is equivalent to:
pReq (optional "id" &: required "name" &: Nil)
Alternately, use pReq and the usual Opaleye required and optional.
Minimal complete definition
Methods
defaultRecTable :: TableProperties (Rec Identity write) (Rec Identity read) Source #
Instances
| DefaultRecTable ([] *) ([] *) Source # | |
| (KnownSymbol s, DefaultRecTableField w r, DefaultRecTable writes reads) => DefaultRecTable ((:) * ((:->) s w) writes) ((:) * ((:->) s r) reads) Source # | |