stackage-server/Model.hs
Michael Snoyman a8911dbb3b Better URLs #37
URLs now look like /snapshot/2014-11-23-7.8hp-exc and similar.
2014-11-23 14:26:03 +02:00

14 lines
432 B
Haskell

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