11 lines
273 B
Go
11 lines
273 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
|
|
Pronoung string
|
|
}
|