mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-12 21:16:14 +01:00
Add Index to comment.dependent_issue_id
(#27325)
This Column is missing index. It is used by
[issue_service.deleteIssue](7ea2a910ce/services/issue/issue.go (L300)
).
Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
parent
3fcad582c9
commit
9d9cebc5e7
3 changed files with 19 additions and 1 deletions
|
@ -246,7 +246,7 @@ type Comment struct {
|
||||||
NewTitle string
|
NewTitle string
|
||||||
OldRef string
|
OldRef string
|
||||||
NewRef string
|
NewRef string
|
||||||
DependentIssueID int64
|
DependentIssueID int64 `xorm:"index"` // This is used by issue_service.deleteIssue
|
||||||
DependentIssue *Issue `xorm:"-"`
|
DependentIssue *Issue `xorm:"-"`
|
||||||
|
|
||||||
CommitID int64
|
CommitID int64
|
||||||
|
|
|
@ -536,6 +536,8 @@ var migrations = []Migration{
|
||||||
NewMigration("Add RemoteAddress to mirrors", v1_21.AddRemoteAddressToMirrors),
|
NewMigration("Add RemoteAddress to mirrors", v1_21.AddRemoteAddressToMirrors),
|
||||||
// v277 -> v278
|
// v277 -> v278
|
||||||
NewMigration("Add Index to issue_user.issue_id", v1_21.AddIndexToIssueUserIssueID),
|
NewMigration("Add Index to issue_user.issue_id", v1_21.AddIndexToIssueUserIssueID),
|
||||||
|
// v278 -> v279
|
||||||
|
NewMigration("Add Index to comment.dependent_issue_id", v1_21.AddIndexToCommentDependentIssueID),
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCurrentDBVersion returns the current db version
|
// GetCurrentDBVersion returns the current db version
|
||||||
|
|
16
models/migrations/v1_21/v278.go
Normal file
16
models/migrations/v1_21/v278.go
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package v1_21 //nolint
|
||||||
|
|
||||||
|
import (
|
||||||
|
"xorm.io/xorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
func AddIndexToCommentDependentIssueID(x *xorm.Engine) error {
|
||||||
|
type Comment struct {
|
||||||
|
DependentIssueID int64 `xorm:"index"`
|
||||||
|
}
|
||||||
|
|
||||||
|
return x.Sync(new(Comment))
|
||||||
|
}
|
Loading…
Reference in a new issue