2019-04-15 00:43:56 +08:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-15 00:43:56 +08:00
|
|
|
|
2022-11-02 16:54:36 +08:00
|
|
|
package v1_9 //nolint
|
2019-04-15 00:43:56 +08:00
|
|
|
|
|
|
|
import (
|
2019-10-17 17:26:49 +08:00
|
|
|
"xorm.io/xorm"
|
2019-04-15 00:43:56 +08:00
|
|
|
)
|
|
|
|
|
2022-11-02 16:54:36 +08:00
|
|
|
func AddGPGKeyImport(x *xorm.Engine) error {
|
2019-04-15 00:43:56 +08:00
|
|
|
type GPGKeyImport struct {
|
|
|
|
KeyID string `xorm:"pk CHAR(16) NOT NULL"`
|
|
|
|
Content string `xorm:"TEXT NOT NULL"`
|
|
|
|
}
|
|
|
|
|
2023-08-14 03:17:21 +08:00
|
|
|
return x.Sync(new(GPGKeyImport))
|
2019-04-15 00:43:56 +08:00
|
|
|
}
|