Interactive/pkg/internal/models/categories.go

20 lines
525 B
Go
Raw Normal View History

2024-02-02 15:42:42 +00:00
package models
type Tag struct {
BaseModel
2024-07-21 06:47:51 +00:00
Alias string `json:"alias" gorm:"uniqueIndex" validate:"lowercase"`
Name string `json:"name"`
Description string `json:"description"`
Posts []Post `json:"posts" gorm:"many2many:post_tags"`
2024-02-02 15:42:42 +00:00
}
type Category struct {
BaseModel
2024-07-21 06:47:51 +00:00
Alias string `json:"alias" gorm:"uniqueIndex" validate:"lowercase,alphanum"`
Name string `json:"name"`
Description string `json:"description"`
Posts []Post `json:"posts" gorm:"many2many:post_categories"`
2024-02-02 15:42:42 +00:00
}