2019-04-14 22:13:56 +05:30
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_9 //nolint
|
2019-04-14 22:13:56 +05:30
|
|
|
|
|
|
|
import (
|
2019-10-17 14:56:49 +05:30
|
|
|
"xorm.io/xorm"
|
2019-04-14 22:13:56 +05:30
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func AddGPGKeyImport(x *xorm.Engine) error {
|
2019-04-14 22:13:56 +05:30
|
|
|
type GPGKeyImport struct {
|
|
|
|
KeyID string `xorm:"pk CHAR(16) NOT NULL"`
|
|
|
|
Content string `xorm:"TEXT NOT NULL"`
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(GPGKeyImport))
|
|
|
|
}
|