2022-02-14 21:08:49 +00:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func increaseCredentialIDTo410(x *xorm.Engine) error {
|
2022-02-16 21:15:49 +00:00
|
|
|
// no-op
|
|
|
|
// V208 is badly broken
|
|
|
|
// So now we have to no-op again.
|
2022-02-14 21:08:49 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|