mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-16 07:52:05 +03:00
12 lines
238 B
Haskell
12 lines
238 B
Haskell
|
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses #-}
|
||
|
|
||
|
module Group where
|
||
|
|
||
|
import Prelude hiding (id)
|
||
|
import PgTestDataSource (defineTable)
|
||
|
import Database.Record.TH (derivingShow)
|
||
|
|
||
|
$(defineTable []
|
||
|
"SAMPLE1" "group" [derivingShow])
|
||
|
|