2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 13:47:15 +08:00
Files
panel/app/models/task.go
2023-06-22 00:09:56 +08:00

14 lines
263 B
Go

package models
import (
"github.com/goravel/framework/database/orm"
)
type Task struct {
orm.Model
Name string `gorm:"not null"`
Status string `gorm:"not null;default:'waiting'"`
Shell string `gorm:"default:null"`
Log string `gorm:"default:null"`
}