mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
11 lines
222 B
Go
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"
|
|
}
|