mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 10:17:17 +08:00
16 lines
450 B
Go
16 lines
450 B
Go
package models
|
|
|
|
import "github.com/goravel/framework/database/orm"
|
|
|
|
type Website struct {
|
|
orm.Model
|
|
Name string `gorm:"not null;unique" json:"name"`
|
|
Status bool `gorm:"not null;default:true" json:"status"`
|
|
Path string `gorm:"not null" json:"path"`
|
|
PHP int `gorm:"not null" json:"php"`
|
|
SSL bool `gorm:"not null" json:"ssl"`
|
|
Remark string `gorm:"not null" json:"remark"`
|
|
|
|
Cert *Cert `gorm:"foreignKey:WebsiteID" json:"cert"`
|
|
}
|