1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-17 16:55:49 +00:00
gitea/models/migrations/v1_9/v84.go

18 lines
342 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_9 //nolint
import (
2019-10-17 09:26:49 +00:00
"xorm.io/xorm"
)
func AddGPGKeyImport(x *xorm.Engine) error {
type GPGKeyImport struct {
KeyID string `xorm:"pk CHAR(16) NOT NULL"`
Content string `xorm:"TEXT NOT NULL"`
}
return x.Sync(new(GPGKeyImport))
}