diff options
author | Justin Nuß <nuss.justin@gmail.com> | 2014-07-24 17:02:42 +0200 |
---|---|---|
committer | Justin Nuß <nuss.justin@gmail.com> | 2014-07-24 17:02:42 +0200 |
commit | 9a7349ce64afdbc528126862283b1068d4c8699a (patch) | |
tree | 235d52ddef3c3b390ca2b5621b2f1b7075f4589c /models/issue.go | |
parent | 4d702eb345d36888b9cace32ba51ac79e9a260f8 (diff) | |
download | gitea-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.go | 2 |
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"` } |