mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-22 05:36:16 +00:00
Add back ID field to pronouns migration
looks unnecessary, but not doing this seems to cause failed tests. Other previous migrations follow this pattern as well.
This commit is contained in:
parent
75890e8f37
commit
8cbacf850a
|
@ -9,6 +9,7 @@ import (
|
||||||
|
|
||||||
func AddPronounsToUser(x *xorm.Engine) error {
|
func AddPronounsToUser(x *xorm.Engine) error {
|
||||||
type User struct {
|
type User struct {
|
||||||
|
ID int64 `xorm:"pk autoincr"`
|
||||||
Pronouns string
|
Pronouns string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue