Add algorithm to sip_authentication

This commit is contained in:
FusionPBX
2025-04-11 14:56:42 -06:00
committed by GitHub
parent 78df968f23
commit 4eb1b00dc7

View File

@@ -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;