MT#33005 Add group to the table speed_dial

This modification enables the get uri related to a speed dial number for a group (with 3 digits - *999).

It gets the new_uri from the table speed_dial using the group_id, the sd_username and sd_domain.

Change-Id: I629c2b5e35b53ee21a1e3a67df7a66f095da9db4
mr11.1
Fabricio Santolin da Silva 3 years ago
parent af272e3ee5
commit 5f34f84b04

@ -0,0 +1,6 @@
use kamailio;
set autocommit=0;
ALTER TABLE speed_dial DROP COLUMN group_id;
COMMIT;

@ -0,0 +1,6 @@
use kamailio;
set autocommit=0;
ALTER TABLE speed_dial ADD COLUMN group_id varchar(128);
COMMIT;
Loading…
Cancel
Save