diff options
author | Vyacheslav Bakhmutov <m0sth8@yandex-team.ru> | 2014-09-05 08:10:41 +0700 |
---|---|---|
committer | Vyacheslav Bakhmutov <m0sth8@yandex-team.ru> | 2014-09-05 08:10:41 +0700 |
commit | 31d80118438729119b40fd863e54ee7ca903b18b (patch) | |
tree | b18ad9543ab70fcd4a863cb04b1fc631b11ae954 /models | |
parent | d8290c9bac5d991674a5d9cc6d56bf102a52245d (diff) | |
download | gitea-31d80118438729119b40fd863e54ee7ca903b18b.tar.gz gitea-31d80118438729119b40fd863e54ee7ca903b18b.zip |
Set milestone content field to TEXT orm type
Diffstat (limited to 'models')
-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 307ace816d..f16c2e256d 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 |