16 lines
260 B
Go
16 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{})
|
|
}
|