stackage-server/Model.hs
2014-04-10 12:46:37 +03:00

14 lines
426 B
Haskell

module Model where
import ClassyPrelude.Yesod
import Database.Persist.Quasi
import Data.Slug (Slug)
import Types
-- 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 sqlOnlySettings, mkMigrate "migrateAll"]
$(persistFileWith lowerCaseSettings "config/models")