2025-04-03 15:24:15 +00:00
|
|
|
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2025-07-05 18:33:45 +02:00
|
|
|
package forgejo_migrations
|
2025-04-03 15:24:15 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func AddPublicKeyInformationForFederation(x *xorm.Engine) error {
|
|
|
|
type FederationHost struct {
|
|
|
|
KeyID sql.NullString `xorm:"key_id UNIQUE"`
|
|
|
|
PublicKey sql.Null[sql.RawBytes] `xorm:"BLOB"`
|
|
|
|
}
|
|
|
|
|
|
|
|
err := x.Sync(&FederationHost{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
type FederatedUser struct {
|
|
|
|
KeyID sql.NullString `xorm:"key_id UNIQUE"`
|
|
|
|
PublicKey sql.Null[sql.RawBytes] `xorm:"BLOB"`
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync(&FederatedUser{})
|
|
|
|
}
|