diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index d407c48c9c..a15287e67a 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -334,6 +334,12 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Number is used for text messages."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_actions"; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "json"; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Array of destination Actions."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_app"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the application.";