1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Merge pull request #446 from m0sth8/fix-milestone-content-size

Set milestone content field to TEXT orm type
This commit is contained in:
无闻
2014-09-04 21:55:17 -04:00

View File

@@ -612,7 +612,7 @@ type Milestone struct {
RepoId int64 `xorm:"INDEX"`
Index int64
Name string
Content string
Content string `xorm:"TEXT"`
RenderedContent string `xorm:"-"`
IsClosed bool
NumIssues int