summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorJustin Nuß <nuss.justin@gmail.com>2014-07-24 17:02:42 +0200
committerJustin Nuß <nuss.justin@gmail.com>2014-07-24 17:02:42 +0200
commit9a7349ce64afdbc528126862283b1068d4c8699a (patch)
tree235d52ddef3c3b390ca2b5621b2f1b7075f4589c /models/issue.go
parent4d702eb345d36888b9cace32ba51ac79e9a260f8 (diff)
downloadgitea-9a7349ce64afdbc528126862283b1068d4c8699a.tar.gz
gitea-9a7349ce64afdbc528126862283b1068d4c8699a.zip
Change Attachment.Path to TEXT (no maximum size)
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go2
1 files changed, 1 insertions, 1 deletions
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"`
}