Compare commits

...

1 Commits

Author SHA1 Message Date
d5ba285a0c Added next queue to DBQueueLog 2025-07-15 11:24:56 +10:00

View File

@@ -8,6 +8,7 @@ type DBQueueLog struct {
Start time.Time `gorm:"index"` Start time.Time `gorm:"index"`
End time.Time `gorm:"index"` End time.Time `gorm:"index"`
Duration float64 Duration float64
NextQueue string
Result string `gorm:"type:json"` Result string `gorm:"type:json"`
} }