1Panel/backend/app/model/website_group.go

12 lines
222 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package model
2022-12-13 17:20:13 +08:00
type WebsiteGroup struct {
2022-10-28 17:04:57 +08:00
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Default bool `json:"default"`
}
2022-11-11 17:41:39 +08:00
2022-12-13 17:20:13 +08:00
func (w WebsiteGroup) TableName() string {
2022-11-11 17:41:39 +08:00
return "website_groups"
}