From eb5d191f174ef926133d1afd1fcb825fff9801dc Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 28 Sep 2012 06:02:17 +0000 Subject: [PATCH] Add do not disturb, call forward all and call forward busy fields to the database. --- app/extensions/app_config.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/extensions/app_config.php b/app/extensions/app_config.php index 1c6ba77cd0..c5a844cee5 100644 --- a/app/extensions/app_config.php +++ b/app/extensions/app_config.php @@ -222,6 +222,18 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'do_not_disturb'; + $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]['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]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'enabled'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = '';