package models // Source model type Source struct { BaseModel[AnthroveSourceID] DisplayName string Domain string `gorm:"not null;unique"` Icon string `gorm:"not null"` UserSources []UserSource `gorm:"foreignKey:SourceID"` References []PostReference `gorm:"foreignKey:SourceID"` } func (Source) TableName() string { return "Source" }