1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-11 05:55:29 +00:00

Add missing sorting column in project_issue table (#19635)

This commit is contained in:
wxiaoguang
2022-05-06 22:25:59 +08:00
committed by GitHub
parent 3ece9d5794
commit 994257d266

View File

@ -19,6 +19,9 @@ type ProjectIssue struct { //revive:disable-line:exported
// If 0, then it has not been added to a specific board in the project
ProjectBoardID int64 `xorm:"INDEX"`
// the sorting order on the board
Sorting int64 `xorm:"NOT NULL DEFAULT 0"`
}
func init() {