2016-02-14 09:10:21 +00:00
|
|
|
-- 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/>.
|
|
|
|
|
2016-05-24 08:28:57 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
-- People
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
|
2016-02-16 11:41:13 +00:00
|
|
|
Sharer
|
2016-05-24 08:34:40 +00:00
|
|
|
ident ShrIdent
|
|
|
|
name Text Maybe
|
2016-05-24 08:37:41 +00:00
|
|
|
created UTCTime default=now()
|
2016-02-16 11:41:13 +00:00
|
|
|
|
2016-05-23 20:46:54 +00:00
|
|
|
UniqueSharer ident
|
2016-02-16 11:41:13 +00:00
|
|
|
|
|
|
|
Person
|
|
|
|
ident SharerId
|
|
|
|
login Text
|
|
|
|
hash Text Maybe
|
|
|
|
email Text Maybe
|
|
|
|
|
|
|
|
UniquePersonIdent ident
|
|
|
|
UniquePersonLogin login
|
|
|
|
|
2016-03-06 11:58:48 +00:00
|
|
|
SshKey
|
2016-05-23 20:46:54 +00:00
|
|
|
ident KyIdent
|
2016-03-06 11:58:48 +00:00
|
|
|
person PersonId
|
|
|
|
algo ByteString
|
|
|
|
content ByteString
|
|
|
|
|
2016-05-23 20:46:54 +00:00
|
|
|
UniqueSshKey person ident
|
2016-03-06 11:58:48 +00:00
|
|
|
|
2016-02-16 11:41:13 +00:00
|
|
|
Group
|
|
|
|
ident SharerId
|
|
|
|
|
2016-05-24 08:28:57 +00:00
|
|
|
UniqueGroup ident
|
|
|
|
|
|
|
|
GroupMember
|
|
|
|
person PersonId
|
|
|
|
group GroupId
|
2016-05-25 15:52:15 +00:00
|
|
|
role GroupRole
|
2016-05-26 16:25:23 +00:00
|
|
|
joined UTCTime
|
2016-05-24 08:28:57 +00:00
|
|
|
|
|
|
|
UniqueGroupMember person group
|
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
RepoRole
|
2016-05-29 13:17:55 +00:00
|
|
|
ident RlIdent
|
|
|
|
person PersonId
|
|
|
|
desc Text
|
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
UniqueRepoRole person ident
|
2016-05-29 13:17:55 +00:00
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
RepoAccess
|
|
|
|
role RepoRoleId
|
|
|
|
op RepoOperation
|
2016-05-29 13:17:55 +00:00
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
UniqueRepoAccess role op
|
2016-05-29 13:17:55 +00:00
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
RepoCollab
|
2016-05-29 13:17:55 +00:00
|
|
|
repo RepoId
|
|
|
|
person PersonId
|
2016-06-01 07:35:22 +00:00
|
|
|
role RepoRoleId
|
2016-05-29 13:17:55 +00:00
|
|
|
|
2016-06-01 07:35:22 +00:00
|
|
|
UniqueRepoCollab repo person
|
2016-05-29 13:17:55 +00:00
|
|
|
|
2016-06-01 08:52:14 +00:00
|
|
|
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
|
|
|
|
|
2016-05-24 08:28:57 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
-- Projects
|
|
|
|
-------------------------------------------------------------------------------
|
2016-02-16 11:41:13 +00:00
|
|
|
|
|
|
|
Project
|
2016-05-23 20:46:54 +00:00
|
|
|
ident PrjIdent
|
2016-04-30 20:40:33 +00:00
|
|
|
sharer SharerId
|
|
|
|
name Text Maybe
|
|
|
|
desc Text Maybe
|
2016-05-24 08:37:41 +00:00
|
|
|
nextTicket Int default=1
|
2016-06-04 06:57:54 +00:00
|
|
|
wiki RepoId Maybe
|
2016-02-16 11:41:13 +00:00
|
|
|
|
|
|
|
UniqueProject ident sharer
|
|
|
|
|
|
|
|
Repo
|
2016-05-23 20:46:54 +00:00
|
|
|
ident RpIdent
|
2016-04-12 17:37:31 +00:00
|
|
|
sharer SharerId
|
2016-05-02 23:51:53 +00:00
|
|
|
vcs VersionControlSystem default='VCSGit'
|
|
|
|
project ProjectId Maybe
|
|
|
|
desc Text Maybe
|
|
|
|
mainBranch Text default='master'
|
2016-02-16 11:41:13 +00:00
|
|
|
|
2016-04-12 17:37:31 +00:00
|
|
|
UniqueRepo ident sharer
|
2016-02-16 11:41:13 +00:00
|
|
|
|
2016-04-30 20:40:33 +00:00
|
|
|
Ticket
|
2016-06-01 16:20:19 +00: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 20:40:33 +00:00
|
|
|
|
|
|
|
UniqueTicket project number
|
2016-05-17 20:34:22 +00:00
|
|
|
|
|
|
|
Discussion
|
2016-05-19 16:58:23 +00:00
|
|
|
nextMessage Int
|
2016-05-17 20:34:22 +00:00
|
|
|
|
|
|
|
Message
|
|
|
|
author PersonId
|
|
|
|
created UTCTime
|
|
|
|
content Text -- Assume this is Pandoc Markdown
|
|
|
|
parent MessageId Maybe
|
|
|
|
root DiscussionId
|
2016-05-19 16:58:23 +00:00
|
|
|
number Int
|
|
|
|
|
|
|
|
UniqueMessage root number
|