mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
8cbacf850a
looks unnecessary, but not doing this seems to cause failed tests. Other previous migrations follow this pattern as well.
18 lines
298 B
Go
18 lines
298 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 {
|
|
ID int64 `xorm:"pk autoincr"`
|
|
Pronouns string
|
|
}
|
|
|
|
return x.Sync(&User{})
|
|
}
|