From 66e7f05558d1d14872ec16038bdc8e2cd8682493 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 25 Jul 2024 03:24:44 -0600 Subject: [PATCH] Add field recording_voice to the recordings table --- app/recordings/app_config.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/recordings/app_config.php b/app/recordings/app_config.php index e7c6773a94..bb6d4963c2 100644 --- a/app/recordings/app_config.php +++ b/app/recordings/app_config.php @@ -178,6 +178,11 @@ $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "recording_voice"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "recording_message"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; @@ -217,4 +222,4 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; -?> \ No newline at end of file +?>