Files

20 lines
383 B
Go
Raw Permalink Normal View History

2021-08-25 09:42:51 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-08-25 09:42:51 +01:00
2025-06-27 07:59:55 +02:00
package v1_16
2021-08-25 09:42:51 +01:00
import (
2022-11-02 16:54:36 +08:00
"code.gitea.io/gitea/models/migrations/base"
2021-08-25 09:42:51 +01:00
"xorm.io/xorm"
)
2022-11-02 16:54:36 +08:00
func RecreateIssueResourceIndexTable(x *xorm.Engine) error {
2021-08-25 09:42:51 +01:00
type IssueIndex struct {
GroupID int64 `xorm:"pk"`
MaxIndex int64 `xorm:"index"`
}
2022-11-02 16:54:36 +08:00
return base.RecreateTables(new(IssueIndex))(x)
2021-08-25 09:42:51 +01:00
}