mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-12 04:08:29 +01:00
15 lines
446 B
Haskell
15 lines
446 B
Haskell
module Model where
|
|
|
|
import Prelude
|
|
import Yesod
|
|
import Data.Text (Text)
|
|
import Database.Persist.Quasi
|
|
import Data.Typeable (Typeable)
|
|
|
|
-- 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")
|