diff options
author | Unknown <joe2010xtmf@163.com> | 2014-06-02 21:59:56 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-06-02 21:59:56 -0400 |
commit | eaa7d71fc7967161dfd79987ed94f01bc8a7b88a (patch) | |
tree | 9797e5020573515569225fa8261e065102aa22a6 | |
parent | e1332c52399e5dae3a282697bd265121be61a086 (diff) |
Fix #232
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | models/issue.go | 2 | ||||
-rw-r--r-- | templates/VERSION | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.4.1.0601 Alpha" +const APP_VER = "0.4.1.0602 Alpha" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue.go b/models/issue.go index 18057985..7db728ec 100644 --- a/models/issue.go +++ b/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"` } diff --git a/templates/VERSION b/templates/VERSION index 81b60321..6e7780b2 100644 --- a/templates/VERSION +++ b/templates/VERSION @@ -1 +1 @@ -0.4.1.0601 Alpha
\ No newline at end of file +0.4.1.0602 Alpha
\ No newline at end of file |