soxx
5aac1f2916
Some checks failed
Gitea Build Check / Build (push) Failing after 5m46s
Signed-off-by: soxx <soxx@fenpa.ws>
16 lines
376 B
Go
16 lines
376 B
Go
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"
|
|
}
|