sTodo/config/models.persistentmodels
2025-07-14 16:06:17 +02:00

22 lines
591 B
Text

-- 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
lastModified UTCTime
UniqueListPair groupId title
User
name Text
lastModified UTCTime
UniqueName name
Group
group Text
lastModified UTCTime
GroupUser
user UserId
groupId GroupId OnDeleteCascade