2016-02-14 18:10:21 +09: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-02-16 20:41:13 +09:00
|
|
|
Sharer
|
2016-05-24 05:46:54 +09:00
|
|
|
ident ShrIdent
|
|
|
|
name Text Maybe
|
2016-02-16 20:41:13 +09:00
|
|
|
|
2016-05-24 05:46:54 +09:00
|
|
|
UniqueSharer ident
|
2016-02-16 20:41:13 +09:00
|
|
|
|
|
|
|
Person
|
|
|
|
ident SharerId
|
|
|
|
login Text
|
|
|
|
hash Text Maybe
|
|
|
|
email Text Maybe
|
|
|
|
|
|
|
|
UniquePersonIdent ident
|
|
|
|
UniquePersonLogin login
|
|
|
|
|
2016-03-06 20:58:48 +09:00
|
|
|
SshKey
|
2016-05-24 05:46:54 +09:00
|
|
|
ident KyIdent
|
2016-03-06 20:58:48 +09:00
|
|
|
person PersonId
|
|
|
|
algo ByteString
|
|
|
|
content ByteString
|
|
|
|
|
2016-05-24 05:46:54 +09:00
|
|
|
UniqueSshKey person ident
|
2016-03-06 20:58:48 +09:00
|
|
|
|
2016-02-16 20:41:13 +09:00
|
|
|
Group
|
|
|
|
ident SharerId
|
|
|
|
|
|
|
|
UniqueGroupIdent ident
|
|
|
|
|
|
|
|
Project
|
2016-05-24 05:46:54 +09:00
|
|
|
ident PrjIdent
|
2016-05-01 05:40:33 +09:00
|
|
|
sharer SharerId
|
|
|
|
name Text Maybe
|
|
|
|
desc Text Maybe
|
2016-05-01 20:05:56 +09:00
|
|
|
nextTicket Int default='1'
|
2016-02-16 20:41:13 +09:00
|
|
|
|
|
|
|
UniqueProject ident sharer
|
|
|
|
|
|
|
|
Repo
|
2016-05-24 05:46:54 +09:00
|
|
|
ident RpIdent
|
2016-04-13 02:37:31 +09:00
|
|
|
sharer SharerId
|
2016-05-03 08:51:53 +09:00
|
|
|
vcs VersionControlSystem default='VCSGit'
|
|
|
|
project ProjectId Maybe
|
|
|
|
desc Text Maybe
|
|
|
|
mainBranch Text default='master'
|
2016-02-16 20:41:13 +09:00
|
|
|
|
2016-04-13 02:37:31 +09:00
|
|
|
UniqueRepo ident sharer
|
2016-02-16 20:41:13 +09:00
|
|
|
|
|
|
|
PersonInGroup
|
|
|
|
person PersonId
|
|
|
|
group GroupId
|
|
|
|
|
|
|
|
UniquePersonInGroup person group
|
2016-05-01 05:40:33 +09:00
|
|
|
|
|
|
|
Ticket
|
|
|
|
project ProjectId
|
|
|
|
number Int
|
|
|
|
created UTCTime
|
2016-05-01 18:58:55 +09:00
|
|
|
creator PersonId
|
2016-05-01 05:40:33 +09:00
|
|
|
title Text
|
|
|
|
desc Text -- Assume this is Pandoc Markdown
|
|
|
|
done Bool
|
2016-05-02 18:15:10 +09:00
|
|
|
closed UTCTime
|
|
|
|
closer PersonId
|
2016-05-18 18:44:32 +09:00
|
|
|
discuss DiscussionId
|
2016-05-01 05:40:33 +09:00
|
|
|
|
|
|
|
UniqueTicket project number
|
2016-05-18 05:34:22 +09:00
|
|
|
|
|
|
|
Discussion
|
2016-05-20 01:58:23 +09:00
|
|
|
nextMessage Int
|
2016-05-18 05:34:22 +09:00
|
|
|
|
|
|
|
Message
|
|
|
|
author PersonId
|
|
|
|
created UTCTime
|
|
|
|
content Text -- Assume this is Pandoc Markdown
|
|
|
|
parent MessageId Maybe
|
|
|
|
root DiscussionId
|
2016-05-20 01:58:23 +09:00
|
|
|
number Int
|
|
|
|
|
|
|
|
UniqueMessage root number
|