mirror of https://github.com/sipwise/db-schema.git
We have to add a newly introduced application server (:5085) to the `kamailio.dispatcher` table in a role of PBX server. Change-Id: I9a0e52489b298f4362813fa9257211420dd6c164mr12.0
parent
e02f5122d1
commit
cb0786a3da
@ -0,0 +1,6 @@
|
||||
USE kamailio;
|
||||
SET autocommit=0;
|
||||
|
||||
DELETE FROM `dispatcher` WHERE destination = 'sip:127.0.0.1:5085';
|
||||
|
||||
COMMIT;
|
@ -0,0 +1,12 @@
|
||||
USE kamailio;
|
||||
SET autocommit=0;
|
||||
|
||||
INSERT INTO `dispatcher` SET
|
||||
setid = '5',
|
||||
destination = 'sip:127.0.0.1:5085',
|
||||
flags = '0',
|
||||
priority = '0',
|
||||
attrs = '',
|
||||
description = 'Cloud PBX servers';
|
||||
|
||||
COMMIT;
|
Loading…
Reference in new issue