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:
JakobDev 2023-09-28 22:58:35 +02:00 committed by GitHub
parent 3fcad582c9
commit 9d9cebc5e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 1 deletions

View file

@ -246,7 +246,7 @@ type Comment struct {
NewTitle string
OldRef string
NewRef string
DependentIssueID int64
DependentIssueID int64 `xorm:"index"` // This is used by issue_service.deleteIssue
DependentIssue *Issue `xorm:"-"`
CommitID int64