11 lines
336 B
Go
11 lines
336 B
Go
package models
|
|
|
|
type Player struct {
|
|
ID uint `json:"id" gorm:"primary_key"`
|
|
Name string `json:"name" gorm:"not null"`
|
|
PersonaID uint `json:"persona_id" gorm:"not null"`
|
|
NucleusID uint `json:"nucleus_id" gorm:"not null"`
|
|
ClanID uint `json:"clan_id" gorm:"not null"`
|
|
Clan Clan `gorm:"references:ID"`
|
|
}
|