mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-25 11:22:16 +00:00
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:
parent
c61b9c5f3c
commit
7ea7f2b37f
3 changed files with 19 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue