Compare commits

...

1 Commits

Author SHA1 Message Date
d8d857e82e Added duration field to queue_logs table. 2025-06-17 11:37:23 +10:00

View File

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