Change Column to allow for more characters (#2874)

255 characters is too small for phones with 15+ BLF lines. 

The phone will generate a postgres ERROR:  value too long for type character varying(255)
This commit is contained in:
konradSC 2017-10-15 00:44:39 -04:00 committed by FusionPBX
parent 9f56b9b58f
commit 8523010d19
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ CREATE TABLE sip_subscriptions (
network_ip character varying(255),
version integer DEFAULT 0 NOT NULL,
orig_proto character varying(255),
full_to character varying(255),
full_to character varying(1024),
sip_subscription_uuid uuid PRIMARY KEY default gen_random_uuid()
);
ALTER TABLE sip_subscriptions OWNER TO fusionpbx;