mirror of
https://code.naskya.net/repos/ndqEd
synced 2025-03-20 15:14:54 +09:00
Add ticketDescription DB entity field, containing pandoc-rendered HTML
This commit is contained in:
parent
17fe163c09
commit
f7432e515c
6 changed files with 89 additions and 32 deletions
migrations
18
migrations/2019_06_03.model
Normal file
18
migrations/2019_06_03.model
Normal file
|
@ -0,0 +1,18 @@
|
|||
Ticket
|
||||
project Int64
|
||||
number Int
|
||||
created UTCTime
|
||||
creator Int64
|
||||
title Text
|
||||
source Text -- Pandoc Markdown
|
||||
description Text -- HTML
|
||||
assignee Int64 Maybe
|
||||
status Text
|
||||
closed UTCTime
|
||||
closer Int64
|
||||
discuss Int64
|
||||
followers Int64
|
||||
|
||||
UniqueTicket project number
|
||||
UniqueTicketDiscussion discuss
|
||||
UniqueTicketFollowers followers
|
Loading…
Add table
Add a link
Reference in a new issue