aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-06-02 21:59:56 -0400
committerUnknown <joe2010xtmf@163.com>2014-06-02 21:59:56 -0400
commiteaa7d71fc7967161dfd79987ed94f01bc8a7b88a (patch)
tree9797e5020573515569225fa8261e065102aa22a6
parente1332c52399e5dae3a282697bd265121be61a086 (diff)
Fix #232
-rw-r--r--gogs.go2
-rw-r--r--models/issue.go2
-rw-r--r--templates/VERSION2
3 files changed, 3 insertions, 3 deletions
diff --git a/gogs.go b/gogs.go
index 963cd587..8e8c161a 100644
--- a/gogs.go
+++ b/gogs.go
@@ -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