Advertisement
vitalijzad

My Yesod Model

Mar 29th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. User
  2. ident Text
  3. password Text Maybe
  4. UniqueUser ident
  5. deriving Typeable
  6. Email
  7. email Text
  8. userId UserId Maybe
  9. verkey Text Maybe
  10. UniqueEmail email
  11. Comment json -- Adding "json" causes ToJSON and FromJSON instances to be derived.
  12. message Text
  13. userId UserId Maybe
  14. deriving Eq
  15. deriving Show
  16.  
  17. -- By default this file is used in Model.hs (which is imported by Foundation.hs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement