diff options
author | Clint Adams <clint@softwarefreedom.org> | 2015-04-24 12:53:02 -0400 |
---|---|---|
committer | Clint Adams <clint@softwarefreedom.org> | 2015-04-24 12:53:02 -0400 |
commit | 62597317839c7945bfbc4b7a00f55d2db6459ab6 (patch) | |
tree | 6ad8c079d5eea66b05326d435e30cc2b1de43266 /Model.hs |
Diffstat (limited to 'Model.hs')
-rw-r--r-- | Model.hs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Model.hs b/Model.hs new file mode 100644 index 0000000..fa3fcd8 --- /dev/null +++ b/Model.hs @@ -0,0 +1,15 @@ +module Model where + +import Prelude +import Yesod +import Data.Text (Text) +import Database.Persist.Quasi +import Data.Time.Clock (UTCTime(..)) + + +-- 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") |