soxx
5aac1f2916
Some checks failed
Gitea Build Check / Build (push) Failing after 5m46s
Signed-off-by: soxx <soxx@fenpa.ws>
15 lines
378 B
Go
15 lines
378 B
Go
package models
|
|
|
|
// Post model
|
|
type Post struct {
|
|
BaseModel[AnthrovePostID]
|
|
Rating Rating `gorm:"type:enum('safe','questionable','explicit')"`
|
|
Tags []Tag `gorm:"many2many:post_tags;"`
|
|
Favorites []UserFavorites `gorm:"foreignKey:PostID"`
|
|
References []PostReference `gorm:"foreignKey:PostID"`
|
|
}
|
|
|
|
func (Post) TableName() string {
|
|
return "Post"
|
|
}
|