Fix typo
This commit is contained in:
parent
9cca79ec4c
commit
5a032d2007
1 changed files with 4 additions and 4 deletions
|
@ -4,8 +4,8 @@ package models
|
||||||
// Each user may have zero, one or more pronouns
|
// Each user may have zero, one or more pronouns
|
||||||
// but each user to pronoun relation may appear at most once
|
// but each user to pronoun relation may appear at most once
|
||||||
type UserToPronoun struct {
|
type UserToPronoun struct {
|
||||||
ID uint64 `gorm:"primarykey"`
|
ID uint64 `gorm:"primarykey"`
|
||||||
User User
|
User User
|
||||||
UserId string
|
UserId string
|
||||||
Pronoung string
|
Pronoun string
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue