mirror of https://github.com/go-gitea/gitea.git
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>
pull/27272/head^2
parent
3fcad582c9
commit
9d9cebc5e7
@ -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 New Issue