mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
3a29a23cdc
v208.go is seriously broken as it misses an ID() check. We need to no-op and remigrate all of the u2f keys. See #18756 Signed-off-by: Andrew Thornton <art27@cantab.net>
17 lines
356 B
Go
17 lines
356 B
Go
// 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 {
|
|
// no-op
|
|
// v208 was completely wrong
|
|
// So now we have to no-op again.
|
|
|
|
return nil
|
|
}
|