11 lines
269 B
Go
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
|
|
}
|