mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-18 09:12:47 +03:00
11 lines
235 B
Haskell
11 lines
235 B
Haskell
|
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses #-}
|
||
|
|
||
|
module User where
|
||
|
|
||
|
import Prelude hiding (id)
|
||
|
import PgTestDataSource (defineTable)
|
||
|
import Database.Record.TH (derivingShow)
|
||
|
|
||
|
$(defineTable []
|
||
|
"SAMPLE1" "user" [derivingShow])
|