Browse Source

Fix for #232

Hint ORM that Comment content should be a text field. Fixes #232
pull/233/head
quux 11 years ago
parent
commit
13d2874739
  1. 2
      models/issue.go

2
models/issue.go

@ -771,7 +771,7 @@ type Comment struct {
IssueId int64
CommitId int64
Line int64
Content string
Content string `xorm:"TEXT"`
Created time.Time `xorm:"CREATED"`
}

Loading…
Cancel
Save