1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 08:49:16 +08:00
1Panel/backend/app/model/app_install_backup.go

11 lines
405 B
Go
Raw Normal View History

2022-10-12 18:57:22 +08:00
package model
type AppInstallBackup struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
Path string `gorm:"type:varchar(64);not null" json:"path"`
2022-10-13 16:46:38 +08:00
Param string `json:"param" gorm:"type:longtext;"`
2022-10-12 18:57:22 +08:00
AppDetailId uint `gorm:"type:varchar(64);not null" json:"app_detail_id"`
AppInstallId uint `gorm:"type:integer;not null" json:"app_install_id"`
}