Files

15 lines
243 B
Go
Raw Permalink Normal View History

2022-01-14 23:03:31 +08:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2022-01-14 23:03:31 +08:00
2025-06-27 07:59:55 +02:00
package v1_16
2022-01-14 23:03:31 +08:00
import (
"xorm.io/xorm"
)
2022-11-02 16:54:36 +08:00
func AddWebAuthnCred(x *xorm.Engine) error {
// NO-OP Don't migrate here - let v210 do this.
2022-01-14 23:03:31 +08:00
return nil
}