mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2025-01-08 14:26:33 +03:00
11 lines
289 B
Haskell
11 lines
289 B
Haskell
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses, FlexibleInstances, DataKinds, DeriveGeneric #-}
|
|
|
|
module StockGoods where
|
|
|
|
import GHC.Generics (Generic)
|
|
import Prelude hiding (seq)
|
|
import PgTestDataSource (defineTable)
|
|
|
|
$(defineTable []
|
|
"EXAMPLE4" "stock_goods" [''Show, ''Generic])
|