Compare commits

..

2 Commits

Author SHA1 Message Date
0f4223e873 Added status column to base_call 2025-09-10 10:41:59 +10:00
faca742f5f Made CallStat's SearchStartTime optional 2025-08-19 11:22:27 +10:00

View File

@@ -19,6 +19,7 @@ type BaseCall struct {
IvrData *int
UtsEntries int
InterpreterCount int
Status string
}
func (BaseCall) TableName() string {
@@ -66,7 +67,7 @@ type CallStat struct {
ClientId int `gorm:"index"`
CustomerDnis string
CustomerAni string
SearchStartTime time.Time
SearchStartTime *time.Time
P1ConnectTime time.Time `gorm:"index"`
P1DisconnectTime time.Time `gorm:"index"`
BookingRequestNumber *int `gorm:"index"`