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

12 lines
222 B
Go
Raw Normal View History

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