From c910f2177aac91924c7942c1267fd2226eaab311 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 3 Dec 2022 18:24:09 -0700 Subject: [PATCH] Add record_length type numeric --- app/xml_cdr/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/xml_cdr/app_config.php b/app/xml_cdr/app_config.php index b599654e15..2425f256ac 100644 --- a/app/xml_cdr/app_config.php +++ b/app/xml_cdr/app_config.php @@ -610,6 +610,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "record_length"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "leg"; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "char(1)"; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";