mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 16:29:06 +01:00
15 lines
354 B
Go
15 lines
354 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
func AddNormalizedFederatedURIToUser(x *xorm.Engine) error {
|
||
|
type User struct {
|
||
|
ID int64 `xorm:"pk autoincr"`
|
||
|
NormalizedFederatedURI string
|
||
|
}
|
||
|
return x.Sync(&User{})
|
||
|
}
|