mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-25 11:16:11 +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{})
|
|
}
|