go-skeletor/entity/command.go

9 lines
193 B
Go
Raw Normal View History

2021-11-02 11:25:21 +01:00
package entity
type Command struct {
Id uint `gorm:"primaryKey"`
Name string
Description string
Cron []Cron `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
}