forgejo-federation/models/forgejo_migrations/v1_22/v10.go

17 lines
260 B
Go
Raw Normal View History

2024-02-24 04:03:02 +05:30
// 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{})
}