diff --git a/storage-new/models/UserToPronoun.go b/storage-new/models/UserToPronoun.go index e99d7e6..70bf38d 100644 --- a/storage-new/models/UserToPronoun.go +++ b/storage-new/models/UserToPronoun.go @@ -4,8 +4,8 @@ package models // Each user may have zero, one or more pronouns // but each user to pronoun relation may appear at most once type UserToPronoun struct { - ID uint64 `gorm:"primarykey"` - User User - UserId string - Pronoung string + ID uint64 `gorm:"primarykey"` + User User + UserId string + Pronoun string }