3 import ClassyPrelude.Yesod
4 import Database.Persist.Quasi
6 -- You can define all of your database entities in the entities file.
7 -- You can find more information on persistent and how to declare entities
9 -- http://www.yesodweb.com/book/persistent/
10 share [mkPersist sqlSettings, mkMigrate "migrateAll"]
11 $(persistFileWith lowerCaseSettings "config/models")