mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
509 B
13 lines
509 B
package model
|
|
|
|
type AppDetail struct {
|
|
BaseModel
|
|
AppId uint `json:"appId" gorm:"type:integer;not null"`
|
|
Version string `json:"version" gorm:"type:varchar(64);not null"`
|
|
Params string `json:"-" gorm:"type:longtext;"`
|
|
DockerCompose string `json:"-" gorm:"type:longtext;not null"`
|
|
Readme string `json:"readme" gorm:"type:longtext;"`
|
|
Status string `json:"status" gorm:"type:varchar(64);not null"`
|
|
LastVersion string `json:"lastVersion" gorm:"type:varchar(64);"`
|
|
}
|