mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
17 lines
394 B
Go
17 lines
394 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
func AddSSHKeypairToPushMirror(x *xorm.Engine) error {
|
||
|
type PushMirror struct {
|
||
|
ID int64 `xorm:"pk autoincr"`
|
||
|
PublicKey string `xorm:"VARCHAR(100)"`
|
||
|
PrivateKey []byte `xorm:"BLOB"`
|
||
|
}
|
||
|
|
||
|
return x.Sync(&PushMirror{})
|
||
|
}
|