mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 18:14:15 +01:00
17 lines
260 B
Go
17 lines
260 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package v1_22 //nolint
|
||
|
|
||
|
import (
|
||
|
"xorm.io/xorm"
|
||
|
)
|
||
|
|
||
|
func AddPronounsToUser(x *xorm.Engine) error {
|
||
|
type User struct {
|
||
|
Pronouns string
|
||
|
}
|
||
|
|
||
|
return x.Sync(&User{})
|
||
|
}
|