0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-10-14 21:14:32 -04:00

Add Index to comment.dependent_issue_id (#27325) (#27340)

Backport #27325 by @JakobDev

This Column is missing index. It is used by
[issue_service.deleteIssue](7ea2a910ce/services/issue/issue.go (L300)).

Co-authored-by: JakobDev <jakobdev@gmx.de>
This commit is contained in:
Giteabot
2023-09-29 10:00:14 +08:00
committed by GitHub
parent c61b9c5f3c
commit 7ea7f2b37f
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