This commit is contained in:
Melody Becker 2025-04-05 22:00:07 +02:00
parent 9cca79ec4c
commit 5a032d2007
No known key found for this signature in database

View file

@ -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
}