Browse Source

Add missing migration (#28827)

Missed from #28498
tags/v1.22.0-rc0
Lunny Xiao 5 months ago
parent
commit
2bdab948cb
No account linked to committer's email address
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      models/migrations/migrations.go

+ 2
- 0
models/migrations/migrations.go View File

@@ -552,6 +552,8 @@ var migrations = []Migration{
NewMigration("Add Index to pull_auto_merge.doer_id", v1_22.AddIndexToPullAutoMergeDoerID),
// v283 -> v284
NewMigration("Add combined Index to issue_user.uid and issue_id", v1_22.AddCombinedIndexToIssueUser),
// v284 -> v285
NewMigration("Add ignore stale approval column on branch table", v1_22.AddIgnoreStaleApprovalsColumnToProtectedBranchTable),
}

// GetCurrentDBVersion returns the current db version

Loading…
Cancel
Save