polysemy-hasql-0.0.1.0: Polysemy effects for databases
Safe HaskellSafe-Inferred
LanguageHaskell2010

Polysemy.Hasql.Effect.DbTable

Documentation

data DbTable a :: Effect where Source #

Constructors

Statement :: p -> Statement p o -> DbTable a m o 

statement :: forall a r p o. Member (DbTable a) r => p -> Statement p o -> Sem r o Source #

type StoreTable i a = DbTable (Uid i a) Source #