inmanis/Model.hs

16 lines
428 B
Haskell
Raw Normal View History

2012-07-02 13:21:39 +00:00
module Model where
import Prelude
import Yesod
import Data.Text (Text)
import Database.Persist.Quasi
2012-08-19 08:21:27 +00:00
import Data.Time
2012-07-02 13:21:39 +00:00
-- 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")