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 f50824fb41
commit 116c6f05d2
3 changed files with 14 additions and 0 deletions
+5
View File
@@ -99,5 +99,10 @@
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "descr";
$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'] = "recording_base64";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Recording file encoded in base64.";
$z++;
?>