mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-14 22:32:07 +03:00
12 lines
261 B
Haskell
12 lines
261 B
Haskell
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses, FlexibleInstances #-}
|
|
|
|
module Business where
|
|
|
|
import Prelude hiding (id)
|
|
import Database.Record.TH (derivingShow)
|
|
|
|
import DataSource (defineTable)
|
|
|
|
$(defineTable []
|
|
"LEARNINGSQL" "business" [derivingShow])
|