Forgejo/models/forgejo_migrations/v1_22/v10.go

18 lines
298 B
Go
Raw Permalink Normal View History

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