From 9a7349ce64afdbc528126862283b1068d4c8699a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justin=20Nu=C3=9F?= Date: Thu, 24 Jul 2014 17:02:42 +0200 Subject: [PATCH] Change Attachment.Path to TEXT (no maximum size) --- models/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/issue.go b/models/issue.go index 9422a7380d..05c9525341 100644 --- a/models/issue.go +++ b/models/issue.go @@ -981,7 +981,7 @@ type Attachment struct { IssueId int64 CommentId int64 Name string - Path string + Path string `xorm:"TEXT"` Created time.Time `xorm:"CREATED"` }