version 1 done
This commit is contained in:
commit
59e14ce390
47 changed files with 9188 additions and 0 deletions
20
config/models.persistentmodels
Normal file
20
config/models.persistentmodels
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
-- By default this file is used by `persistFileWith` in Model.hs (which is imported by Foundation.hs)
|
||||
-- Syntax for this file here: https://github.com/yesodweb/persistent/blob/master/docs/Persistent-entity-syntax.md
|
||||
|
||||
TodolistItem
|
||||
todolistId TodolistId OnDeleteCascade
|
||||
value Bool
|
||||
name Text
|
||||
Todolist
|
||||
groupId GroupId OnDeleteCascade
|
||||
title Text
|
||||
UniqueListPair groupId title
|
||||
User
|
||||
name Text
|
||||
UniqueName name
|
||||
Group
|
||||
group Text
|
||||
GroupUser
|
||||
user UserId
|
||||
group Text
|
||||
groupId GroupId OnDeleteCascade
|
||||
Loading…
Add table
Add a link
Reference in a new issue