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.
22 lines
854 B
22 lines
854 B
package model
|
|
|
|
type BackupAccount struct {
|
|
BaseModel
|
|
Type string `gorm:"type:varchar(64);unique;not null" json:"type"`
|
|
Bucket string `gorm:"type:varchar(256)" json:"bucket"`
|
|
AccessKey string `gorm:"type:varchar(256)" json:"accessKey"`
|
|
Credential string `gorm:"type:varchar(256)" json:"credential"`
|
|
Vars string `gorm:"type:longText" json:"vars"`
|
|
}
|
|
|
|
type BackupRecord struct {
|
|
BaseModel
|
|
Type string `gorm:"type:varchar(64);not null" json:"type"`
|
|
Name string `gorm:"type:varchar(64);not null" json:"name"`
|
|
DetailName string `gorm:"type:varchar(256)" json:"detailName"`
|
|
Source string `gorm:"type:varchar(256)" json:"source"`
|
|
BackupType string `gorm:"type:varchar(256)" json:"backupType"`
|
|
FileDir string `gorm:"type:varchar(256)" json:"fileDir"`
|
|
FileName string `gorm:"type:varchar(256)" json:"fileName"`
|
|
}
|