16 lines
360 B
Go
16 lines
360 B
Go
package pgModels
|
|
|
|
// Source model
|
|
type Source struct {
|
|
BaseModel
|
|
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"
|
|
}
|