gorm_models/models/queue_log.go

18 lines
387 B
Go

package models
import "time"
type DBQueueLog struct {
Queue string `gorm:"primaryKey"`
ConversationId string `gorm:"primaryKey"`
Start time.Time `gorm:"index"`
End time.Time `gorm:"index"`
Duration float64
NextQueue string
Result string `gorm:"type:json"`
}
func (DBQueueLog) TableName() string {
return "gc_queue_logs"
}