mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
Set milestone content field to TEXT orm type
This commit is contained in:
parent
d8290c9bac
commit
31d8011843
1 changed files with 1 additions and 1 deletions
|
@ -612,7 +612,7 @@ type Milestone struct {
|
||||||
RepoId int64 `xorm:"INDEX"`
|
RepoId int64 `xorm:"INDEX"`
|
||||||
Index int64
|
Index int64
|
||||||
Name string
|
Name string
|
||||||
Content string
|
Content string `xorm:"TEXT"`
|
||||||
RenderedContent string `xorm:"-"`
|
RenderedContent string `xorm:"-"`
|
||||||
IsClosed bool
|
IsClosed bool
|
||||||
NumIssues int
|
NumIssues int
|
||||||
|
|
Loading…
Reference in a new issue