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