33 lines
851 B
Go
33 lines
851 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type DBCall struct {
|
|
AfterCallWorkRequired bool
|
|
Confined bool
|
|
ConnectedTime *time.Time `gorm:"index"`
|
|
Direction string
|
|
DisconnectReasons string `gorm:"type:json"`
|
|
DisconnectType string
|
|
DisconnectedTime *time.Time `gorm:"index"`
|
|
Held bool
|
|
Id string `gorm:"primaryKey;index"`
|
|
InitialState string
|
|
Muted bool
|
|
Other string `gorm:"type:json"`
|
|
ParticipantId string `gorm:"foreignKey;index"`
|
|
PeerId string
|
|
Provider string
|
|
Recording bool
|
|
RecordingState string
|
|
SecurePause bool
|
|
Self string `gorm:"type:json"`
|
|
State string
|
|
}
|
|
|
|
func (DBCall) TableName() string {
|
|
return "gc_calls"
|
|
}
|