mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 00:39:17 +08:00
10 lines
307 B
Go
10 lines
307 B
Go
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"`
|
|
Credential string `gorm:"type:varchar(256)" json:"credential"`
|
|
Vars string `gorm:"type:longText" json:"vars"`
|
|
}
|