14 lines
457 B
Plaintext
14 lines
457 B
Plaintext
{-# LANGUAGE QuasiQuotes, TypeFamilies, GeneralizedNewtypeDeriving, TemplateHaskell #-}
|
|
module Model where
|
|
|
|
import Yesod
|
|
import Database.Persist.TH (share, mkMigrate)
|
|
import Data.Text (Text)
|
|
|
|
-- 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, mkMigrate "migrateAll"] $(persistFile "entities")
|
|
|