otter-space-sdk/pkg/models/source.go
2024-06-22 22:06:36 +02:00

16 lines
358 B
Go

package models
// 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"
}