diff options
author | 无闻 <joe2010xtmf@163.com> | 2014-09-04 21:55:17 -0400 |
---|---|---|
committer | 无闻 <joe2010xtmf@163.com> | 2014-09-04 21:55:17 -0400 |
commit | 033a7f022401fb1bd5fdc540f24ba26f5ab64a75 (patch) | |
tree | b18ad9543ab70fcd4a863cb04b1fc631b11ae954 | |
parent | d8290c9bac5d991674a5d9cc6d56bf102a52245d (diff) | |
parent | 31d80118438729119b40fd863e54ee7ca903b18b (diff) |
Merge pull request #446 from m0sth8/fix-milestone-content-size
Set milestone content field to TEXT orm type
-rw-r--r-- | models/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go index 307ace81..f16c2e25 100644 --- a/models/issue.go +++ b/models/issue.go @@ -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 |