mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-15 06:43:04 +03:00
12 lines
243 B
Haskell
12 lines
243 B
Haskell
|
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses #-}
|
||
|
|
||
|
module Branch where
|
||
|
|
||
|
import Prelude hiding (id, zip)
|
||
|
import Database.Record.TH (derivingShow)
|
||
|
|
||
|
import DataSource (defineTable)
|
||
|
|
||
|
$(defineTable []
|
||
|
"LEARNINGSQL" "branch" [derivingShow])
|