Add base64 field to recordings, voicemail, and voicemail recordings.

This commit is contained in:
Mark Crane
2015-03-22 10:52:10 +00:00
parent 9a15385e87
commit 8b05c4f897
3 changed files with 14 additions and 0 deletions

View File

@@ -102,5 +102,10 @@
$apps[$x]['db'][$y]['fields'][$z]['name'] = "greeting_description";
$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'] = "greeting_base64";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Voicemail greeting file encoded in base64.";
$z++;
?>