2015-03-10 23:13:42 +00:00
|
|
|
module Model where
|
|
|
|
|
|
|
|
import ClassyPrelude.Yesod
|
|
|
|
import Database.Persist.Quasi
|
2015-06-16 18:08:01 +00:00
|
|
|
import Yesod.Auth.HashDB (HashDBUser(..))
|
2015-03-10 23:13:42 +00:00
|
|
|
|
|
|
|
-- You can define all of your database entities in the entities file.
|
|
|
|
-- You can find more information on persistent and how to declare entities
|
|
|
|
-- at:
|
|
|
|
-- http://www.yesodweb.com/book/persistent/
|
|
|
|
share [mkPersist sqlSettings, mkMigrate "migrateAll"]
|
|
|
|
$(persistFileWith lowerCaseSettings "config/models")
|
2015-06-16 18:08:01 +00:00
|
|
|
|
|
|
|
instance HashDBUser User where
|
|
|
|
userPasswordHash = userPassword
|
|
|
|
setPasswordHash h p = p { userPassword = Just h }
|