소스 검색

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

Set milestone content field to TEXT orm type
无闻 10 년 전
부모
커밋
033a7f0224
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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