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