mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01: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
1 changed files with 1 additions and 0 deletions
|
@ -9,6 +9,7 @@ import (
|
|||
|
||||
func AddPronounsToUser(x *xorm.Engine) error {
|
||||
type User struct {
|
||||
ID int64 `xorm:"pk autoincr"`
|
||||
Pronouns string
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue