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
1 changed files with 1 additions and 0 deletions
|
@ -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