From eaa7d71fc7967161dfd79987ed94f01bc8a7b88a Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 2 Jun 2014 21:59:56 -0400 Subject: [PATCH] Fix #232 --- gogs.go | 2 +- models/issue.go | 2 +- templates/VERSION | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gogs.go b/gogs.go index 963cd5878e..8e8c161a5c 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 18057985f0..7db728ec3d 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 81b6032124..6e7780b2e4 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