2 {-# LANGUAGE TemplateHaskell #-}
5 import ClassyPrelude.Yesod
6 import Database.Persist.Quasi
8 -- You can define all of your database entities in the entities file.
9 -- You can find more information on persistent and how to declare entities
11 -- http://www.yesodweb.com/book/persistent/
12 share [mkPersist sqlSettings, mkMigrate "migrateAll"]
13 $(persistFileWith lowerCaseSettings "config/models")