Browse Source

Add missing `sorting` column in `project_issue` table (#19635)

tags/v1.18.0-dev
wxiaoguang 2 years ago
parent
commit
994257d266
No account linked to committer's email address
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      models/project/issue.go

+ 3
- 0
models/project/issue.go 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() {

Loading…
Cancel
Save