From 7906b036d2d4657084a51818f460ff398060d2ab Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 18 May 2021 19:15:16 -0600 Subject: [PATCH] Change back to original data type to prevent SQL errors. [ERROR: invalid input syntax for type uuid: "*5903" LINE 1: ...d,presence_id,uuid from sip_dialogs where uuid != '*5903' an... --- resources/install/sql/switch.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install/sql/switch.sql b/resources/install/sql/switch.sql index 43b38b5dc4..aac6cf7626 100644 --- a/resources/install/sql/switch.sql +++ b/resources/install/sql/switch.sql @@ -350,7 +350,7 @@ ALTER TABLE sip_authentication OWNER TO fusionpbx; -- CREATE TABLE sip_dialogs ( call_id character varying(255), - uuid uuid, + uuid character varying(255), sip_to_user character varying(255), sip_to_host character varying(255), sip_from_user character varying(255),