TT#65452 add "failed" call status

to be used by mediator for cdrs that run into
the "no-BYE" timeout.

Change-Id: I07d31fa0797f47ae50ac77ad3566d277fa5a25da
changes/27/33427/3
Rene Krenn 6 years ago
parent 4637953550
commit 820cb48bc2

@ -0,0 +1,4 @@
USE accounting;
ALTER TABLE cdr MODIFY call_status enum('ok','busy','noanswer','cancel','offline','timeout','other') NOT NULL DEFAULT 'ok';
ALTER TABLE int_cdr MODIFY call_status enum('ok','busy','noanswer','cancel','offline','timeout','other') NOT NULL DEFAULT 'ok';

@ -0,0 +1,4 @@
USE accounting;
ALTER TABLE cdr MODIFY call_status enum('ok','busy','noanswer','cancel','offline','timeout','other','failed') NOT NULL DEFAULT 'ok';
ALTER TABLE int_cdr MODIFY call_status enum('ok','busy','noanswer','cancel','offline','timeout','other','failed') NOT NULL DEFAULT 'ok';
Loading…
Cancel
Save