2024-02-23 23:33:02 +01:00
|
|
|
// 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 {
|
2024-02-24 22:26:18 +01:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
2024-02-23 23:33:02 +01:00
|
|
|
Pronouns string
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync(&User{})
|
|
|
|
}
|