Vervis/config/models

147 lines
3 KiB
Text
Raw Normal View History

-- This file is part of Vervis.
--
-- Written in 2016 by fr33domlover <fr33domlover@riseup.net>.
--
-- ♡ Copying is an act of love. Please copy, reuse and share.
--
-- The author(s) have dedicated all copyright and related and neighboring
-- rights to this software to the public domain worldwide. This software is
-- distributed without any warranty.
--
-- You should have received a copy of the CC0 Public Domain Dedication along
-- with this software. If not, see
-- <http://creativecommons.org/publicdomain/zero/1.0/>.
-------------------------------------------------------------------------------
-- People
-------------------------------------------------------------------------------
Sharer
2016-05-24 10:34:40 +02:00
ident ShrIdent
name Text Maybe
created UTCTime default=now()
UniqueSharer ident
Person
ident SharerId
login Text
hash Text Maybe
email Text Maybe
UniquePersonIdent ident
UniquePersonLogin login
2016-03-06 12:58:48 +01:00
SshKey
ident KyIdent
2016-03-06 12:58:48 +01:00
person PersonId
algo ByteString
content ByteString
UniqueSshKey person ident
2016-03-06 12:58:48 +01:00
Group
ident SharerId
UniqueGroup ident
GroupMember
person PersonId
group GroupId
role GroupRole
2016-05-26 18:25:23 +02:00
joined UTCTime
UniqueGroupMember person group
RepoRole
ident RlIdent
person PersonId
desc Text
UniqueRepoRole person ident
RepoAccess
role RepoRoleId
op RepoOperation
UniqueRepoAccess role op
RepoCollab
repo RepoId
person PersonId
role RepoRoleId
UniqueRepoCollab repo person
ProjectRole
ident RlIdent
person PersonId
desc Text
UniqueProjectRole person ident
ProjectAccess
role ProjectRoleId
op ProjectOperation
UniqueProjectAccess role op
ProjectCollab
project ProjectId
person PersonId
role ProjectRoleId
UniqueProjectCollab project person
-------------------------------------------------------------------------------
-- Projects
-------------------------------------------------------------------------------
Project
ident PrjIdent
2016-04-30 22:40:33 +02:00
sharer SharerId
name Text Maybe
desc Text Maybe
nextTicket Int default=1
wiki RepoId Maybe
UniqueProject ident sharer
Repo
ident RpIdent
sharer SharerId
vcs VersionControlSystem default='VCSGit'
project ProjectId Maybe
desc Text Maybe
mainBranch Text default='master'
UniqueRepo ident sharer
2016-04-30 22:40:33 +02:00
Ticket
2016-06-01 18:20:19 +02:00
project ProjectId
number Int
created UTCTime
creator PersonId
title Text
desc Text -- Assume this is Pandoc Markdown
assignee PersonId Maybe
done Bool
closed UTCTime
closer PersonId
discuss DiscussionId
2016-04-30 22:40:33 +02:00
UniqueTicket project number
Discussion
2016-05-19 18:58:23 +02:00
nextMessage Int
Message
author PersonId
created UTCTime
content Text -- Assume this is Pandoc Markdown
parent MessageId Maybe
root DiscussionId
2016-05-19 18:58:23 +02:00
number Int
UniqueMessage root number