Added duration field to queue_logs table.

This commit is contained in:
Frederick Holland 2025-06-17 11:37:23 +10:00
parent ab6b36c12c
commit d8d857e82e

View File

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