From 3f5d737f4c7d79d19da9ebaf414741758be93976 Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Mon, 10 Jun 2019 11:22:58 +0000 Subject: [PATCH] Forgot to record migration --- migrations/2019_06_09_fill.model | 87 ++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 migrations/2019_06_09_fill.model diff --git a/migrations/2019_06_09_fill.model b/migrations/2019_06_09_fill.model new file mode 100644 index 0000000..6fb771b --- /dev/null +++ b/migrations/2019_06_09_fill.model @@ -0,0 +1,87 @@ +OutboxItem + +Inbox + +InboxItem + unread Bool + +InboxItemLocal + inbox InboxId + activity OutboxItemId + item InboxItemId + + UniqueInboxItemLocal inbox activity + UniqueInboxItemLocalItem item + +RemoteActivity + +InboxItemRemote + inbox InboxId + activity RemoteActivityId + item InboxItemId + + UniqueInboxItemRemote inbox activity + UniqueInboxItemRemoteItem item + +Project + ident PrjIdent + sharer Int64 + name Text Maybe + desc Text Maybe + workflow Int64 + nextTicket Int + wiki Int64 Maybe + collabUser Int64 Maybe + collabAnon Int64 Maybe + inbox InboxId + + UniqueProject ident sharer + UniqueProjectInbox inbox + +Ticket + project ProjectId + number Int + created UTCTime + title Text + source Text -- Pandoc Markdown + description Text -- HTML + assignee Int64 Maybe + status Text + closed UTCTime + closer Int64 Maybe + discuss DiscussionId + followers Int64 + + UniqueTicket project number + UniqueTicketDiscussion discuss + UniqueTicketFollowers followers + +Discussion + +Message + created UTCTime + source Text -- Pandoc Markdown + content Text -- HTML + parent MessageId Maybe + root DiscussionId + +LocalMessage + author Int64 + rest MessageId + create OutboxItemId + unlinkedParent FedURI Maybe + + UniqueLocalMessage rest + UniqueLocalMessageCreate create + +RemoteMessage + author Int64 + instance Int64 + ident LocalURI + rest MessageId + create RemoteActivityId + lostParent FedURI Maybe + + UniqueRemoteMessageIdent instance ident + UniqueRemoteMessage rest + UniqueRemoteMessageCreate create