mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
360 B
Go
18 lines
360 B
Go
3 years ago
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
2 years ago
|
package v1_16 //nolint
|
||
3 years ago
|
|
||
|
import (
|
||
|
"xorm.io/xorm"
|
||
|
)
|
||
|
|
||
2 years ago
|
func IncreaseCredentialIDTo410(x *xorm.Engine) error {
|
||
3 years ago
|
// no-op
|
||
|
// v208 was completely wrong
|
||
|
// So now we have to no-op again.
|
||
3 years ago
|
|
||
|
return nil
|
||
|
}
|