From 2d1c194f354bf3539b58ffe2ed2a7e5d082c3862 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 17 Dec 2012 22:19:04 +0000 Subject: [PATCH] Add call forward all and call forward busy fields to the database. --- app/extensions/app_config.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/app/extensions/app_config.php b/app/extensions/app_config.php index e1f6e5db1b..eccfb282fc 100644 --- a/app/extensions/app_config.php +++ b/app/extensions/app_config.php @@ -248,11 +248,20 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'call_forward_all'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'forward_all_destination'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'call_forward_uuid'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'call_forward_busy'; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'forward_all_enabled'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'forward_busy_destination'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'forward_busy_enabled'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++;