1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-24 19:28:38 +00:00

Replace ReviewComment with Content

Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
Jonas Franz
2018-05-06 23:32:24 +02:00
parent 623a9f6e3c
commit aeb057755a

View File

@@ -26,8 +26,7 @@ type Review struct {
ReviewerID int64 `xorm:"index"` ReviewerID int64 `xorm:"index"`
Issue *Issue `xorm:"-"` Issue *Issue `xorm:"-"`
IssueID int64 `xorm:"index"` IssueID int64 `xorm:"index"`
ReviewCommentID int64 `xorm:"index"` Content string
ReviewComment *Comment `xorm:"-"`
CreatedUnix util.TimeStamp `xorm:"INDEX created"` CreatedUnix util.TimeStamp `xorm:"INDEX created"`
UpdatedUnix util.TimeStamp `xorm:"INDEX updated"` UpdatedUnix util.TimeStamp `xorm:"INDEX updated"`