1Panel/backend/app/model/website_group.go
2022-11-17 21:20:33 +08:00

11 lines
222 B
Go

package model
type WebSiteGroup struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Default bool `json:"default"`
}
func (w WebSiteGroup) TableName() string {
return "website_groups"
}