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