forgejo/models/forgejo_migrations/v1_22/v10.go
2024-04-03 15:15:53 -05:00

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{})
}