Added next queue to DBQueueLog

This commit is contained in:
Frederick Holland 2025-07-15 11:24:56 +10:00
parent d8e83b8e75
commit d5ba285a0c

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"`
} }