Add inbound peering contract id to peer groups.

This will be needed for inbound call rating of peers.
remotes/svn/2.8
Andreas Granig 13 years ago
parent 53b130ec11
commit 29e8b8de10

@ -0,0 +1,5 @@
USE provisioning;
ALTER TABLE voip_peer_groups DROP COLUMN inbound_peering_contract_id;
ALTER TABLE voip_peer_groups CHANGE COLUMN outbound_peering_contract_id
peering_contract_id INT(11) unsigned;

@ -0,0 +1,6 @@
USE provisioning;
ALTER TABLE voip_peer_groups CHANGE peering_contract_id
outbound_peering_contract_id int(11) unsigned;
ALTER TABLE voip_peer_groups ADD COLUMN
inbound_peering_contract_id int(11) unsigned;
Loading…
Cancel
Save