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:
parent
9f56b9b58f
commit
8523010d19
|
|
@ -448,7 +448,7 @@ CREATE TABLE sip_subscriptions (
|
||||||
network_ip character varying(255),
|
network_ip character varying(255),
|
||||||
version integer DEFAULT 0 NOT NULL,
|
version integer DEFAULT 0 NOT NULL,
|
||||||
orig_proto character varying(255),
|
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()
|
sip_subscription_uuid uuid PRIMARY KEY default gen_random_uuid()
|
||||||
);
|
);
|
||||||
ALTER TABLE sip_subscriptions OWNER TO fusionpbx;
|
ALTER TABLE sip_subscriptions OWNER TO fusionpbx;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue