From e9c3071a36da43a8a07c90583b3266858a075f58 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Tue, 12 Nov 2013 19:28:45 +0000 Subject: [PATCH] Set the database type to text for Postgres. --- app/sip_profiles/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/sip_profiles/app_config.php b/app/sip_profiles/app_config.php index be7a01f729..782eb3bf4f 100644 --- a/app/sip_profiles/app_config.php +++ b/app/sip_profiles/app_config.php @@ -125,7 +125,7 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_hostname"; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "varchar(255)"; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "vachar(255)"; $z++;