linstrom/storage-new/models/UserToPronoun.go
2025-04-05 22:00:07 +02:00

11 lines
269 B
Go

package models
// Adds one pronoun to a user.
// 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
Pronoun string
}