relational-schemas-0.1.8.0: RDBMSs' schema templates for relational-query
Safe HaskellNone
LanguageHaskell2010

Database.Relational.Schema.SQLite3.TableInfo

Documentation

data TableInfo Source #

Constructors

TableInfo 

Fields

Instances

Instances details
Show TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

showsPrec :: Int -> TableInfo -> ShowS

show :: TableInfo -> String

showList :: [TableInfo] -> ShowS

Generic TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Associated Types

type Rep TableInfo :: Type -> Type

Methods

from :: TableInfo -> Rep TableInfo x

to :: Rep TableInfo x -> TableInfo

TableDerivable TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

LiteralSQL TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

PersistableWidth TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

persistableWidth :: PersistableRecordWidth TableInfo

HasProjection "cid" TableInfo Int64 Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "cid" -> Pi TableInfo Int64 Source #

HasProjection "ctype" TableInfo String Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "ctype" -> Pi TableInfo String Source #

HasProjection "name" TableInfo String Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "name" -> Pi TableInfo String Source #

HasProjection "notnull" TableInfo Int16 Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "notnull" -> Pi TableInfo Int16 Source #

HasProjection "pk" TableInfo Int16 Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "pk" -> Pi TableInfo Int16 Source #

HasProjection "dfltValue" TableInfo (Maybe String) Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

projection :: PiLabel "dfltValue" -> Pi TableInfo (Maybe String) Source #

ProductConstructor (Int64 -> String -> String -> Int16 -> Maybe String -> Int16 -> TableInfo) Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

Methods

productConstructor :: Int64 -> String -> String -> Int16 -> Maybe String -> Int16 -> TableInfo

type Rep TableInfo Source # 
Instance details

Defined in Database.Relational.Schema.SQLite3.TableInfo

type Rep TableInfo = D1 ('MetaData "TableInfo" "Database.Relational.Schema.SQLite3.TableInfo" "relational-schemas-0.1.8.0-HMk69jUbeNwKrNpnrxcDQ7" 'False) (C1 ('MetaCons "TableInfo" 'PrefixI 'True) ((S1 ('MetaSel ('Just "cid") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int64) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 String) :*: S1 ('MetaSel ('Just "ctype") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 String))) :*: (S1 ('MetaSel ('Just "notnull") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int16) :*: (S1 ('MetaSel ('Just "dfltValue") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 (Maybe String)) :*: S1 ('MetaSel ('Just "pk") 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Int16)))))

dfltValue' :: Pi TableInfo (Maybe String) Source #