1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-02 16:15:47 +00:00
gitea/models/migrations/v1_16/v204.go

15 lines
298 B
Go
Raw Normal View History

// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_16 //nolint
import "xorm.io/xorm"
func AddSSHKeyIsVerified(x *xorm.Engine) error {
type PublicKey struct {
Verified bool `xorm:"NOT NULL DEFAULT false"`
}
return x.Sync2(new(PublicKey))
}