mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 05:49:07 +08:00
12 lines
382 B
Go
12 lines
382 B
Go
package model
|
|
|
|
type ComposeTemplate struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"type:varchar(64);not null;unique" json:"name"`
|
|
From string `gorm:"type:varchar(64);not null" json:"from"`
|
|
Description string `gorm:"type:varchar(256)" json:"description"`
|
|
Path string `gorm:"type:varchar(64)" json:"path"`
|
|
Content string `gorm:"type:longtext" json:"content"`
|
|
}
|