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...
This commit is contained in:
FusionPBX 2021-05-18 19:15:16 -06:00 committed by GitHub
parent 323729a383
commit 7906b036d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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),