From 4eb1b00dc75c12550314b3510ba7dd96dbd0614f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 11 Apr 2025 14:56:42 -0600 Subject: [PATCH] Add algorithm to sip_authentication --- resources/install/sql/switch.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/install/sql/switch.sql b/resources/install/sql/switch.sql index 576a74404a..76566de0fe 100644 --- a/resources/install/sql/switch.sql +++ b/resources/install/sql/switch.sql @@ -341,7 +341,8 @@ CREATE TABLE sip_authentication ( profile_name character varying(255), hostname character varying(255), last_nc integer, -sip_authentication_uuid uuid PRIMARY KEY default gen_random_uuid() + algorithm integer DEFAULT 1 NOT NULL + sip_authentication_uuid uuid PRIMARY KEY default gen_random_uuid() ); ALTER TABLE sip_authentication OWNER TO fusionpbx;