35 lines
699 B
Text
35 lines
699 B
Text
User
|
|
ident Text
|
|
balance Int
|
|
timestamp Int
|
|
email Text Maybe
|
|
avatar AvatarId Maybe
|
|
UniqueUser ident
|
|
deriving Typeable Show
|
|
Beverage
|
|
ident Text
|
|
price Int
|
|
amount Int
|
|
alertAmount Int
|
|
avatar AvatarId Maybe
|
|
UniqueBeverage ident
|
|
deriving Typeable Show
|
|
Transaction
|
|
description Text
|
|
amount Int
|
|
time UTCTime
|
|
deriving Typeable Show
|
|
Cashier
|
|
balance Int
|
|
created UTCTime default=now()
|
|
deriving Typeable Show
|
|
CashCheck
|
|
balance Int
|
|
time UTCTime
|
|
deriving Typeable Show
|
|
Avatar
|
|
ident Text
|
|
data ByteString
|
|
deriving Typeable Show
|
|
|
|
-- By default this file is used in Model.hs (which is imported by Foundation.hs)
|