Freeswitch: Callcenter Custom QueueLog
QueueLog Table Postgres
CREATE TABLE queuelog (
id serial PRIMARY KEY,
cc_member_uuid uuid NOT NULL,
cc_agent_uuid uuid,
cc_queue_joined_epoch INT NOT NULL,
cc_queue_answered_epoch INT,
cc_queue_terminated_epoch INT,
cc_queue_canceled_epoch INT,
cc_side VARCHAR NOT NULL,
caller_id VARCHAR,
cc_queue VARCHAR NOT N…
↧