serversession/examples/serversession-example-yesod-persistent/Model.hs
Felipe Lessa 66d858170e Add serversession code to Yesod+Persistent example.
Example doesn't showcase yesod-auth integration, though.
2015-06-01 14:36:15 -03:00

12 lines
382 B
Haskell

module Model where
import ClassyPrelude.Yesod
import Database.Persist.Quasi
-- 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, mkSave "entityDefs"]
$(persistFileWith lowerCaseSettings "config/models")