Parcourir la source

Merge pull request #446 from m0sth8/fix-milestone-content-size

Set milestone content field to TEXT orm type
无闻 il y a 10 ans
Parent
commit
033a7f0224
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      models/issue.go

+ 1 - 1
models/issue.go

@@ -612,7 +612,7 @@ type Milestone struct {
 	RepoId          int64 `xorm:"INDEX"`
 	Index           int64
 	Name            string
-	Content         string
+	Content         string `xorm:"TEXT"`
 	RenderedContent string `xorm:"-"`
 	IsClosed        bool
 	NumIssues       int