2015-08-20 22:33:38 +02:00
|
|
|
module Model where
|
|
|
|
|
|
|
|
import ClassyPrelude.Yesod
|
|
|
|
import Database.Persist.Quasi
|
|
|
|
|
2015-08-29 13:13:16 +02:00
|
|
|
import PersistSHA1
|
|
|
|
|
2015-12-12 18:53:20 +01:00
|
|
|
import GEval.Core
|
2019-08-12 18:19:02 +02:00
|
|
|
import GEval.EvaluationScheme
|
2015-12-12 18:53:20 +01:00
|
|
|
import PersistMetric
|
2019-08-12 18:19:02 +02:00
|
|
|
import PersistEvaluationScheme
|
2021-03-03 09:19:34 +01:00
|
|
|
import PersistTeamActionType
|
2015-12-12 18:53:20 +01:00
|
|
|
|
2015-08-20 22:33:38 +02: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")
|