Change review content column to type text in db (#9229)

This commit is contained in:
David Svantesson 2019-12-02 19:32:40 +01:00 committed by techknowlogick
parent 33fc48c8ae
commit 1aa7e27dd0
3 changed files with 39 additions and 1 deletions

View file

@ -52,7 +52,7 @@ type Review struct {
ReviewerID int64 `xorm:"index"`
Issue *Issue `xorm:"-"`
IssueID int64 `xorm:"index"`
Content string
Content string `xorm:"TEXT"`
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`