yammat/config/models
2015-09-16 20:28:30 +02:00

46 lines
921 B
Plaintext

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
correctedAmount Int default=0
ml Int default=500
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
hash ByteString default='fill_me!'
deriving Typeable Show
Barcode
code Text
isUser Bool
user UserId Maybe
bev BeverageId Maybe
UniqueBarcode code
deriving Show
-- By default this file is used in Model.hs (which is imported by Foundation.hs)