eidolon/Model.hs
2014-12-28 07:12:25 +01:00

14 lines
457 B
Haskell

module Model where
import ClassyPrelude.Yesod
import Yesod.Markdown (Markdown)
import Database.Persist.Quasi
import qualified System.FilePath as FP
-- 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")