10 lines
243 B
Go
10 lines
243 B
Go
package models
|
|
|
|
// Defines an account to be a being of the set type
|
|
// Multiple are possible for combination
|
|
type UserToBeing struct {
|
|
ID uint64 `gorm:"primarykey"`
|
|
User User
|
|
UserId string
|
|
Being BeingType `gorm:"type:being_type"`
|
|
}
|