|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
USE provisioning;
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE `provisioning`.`voip_peer_preferences` (
|
|
|
|
CREATE TABLE `provisioning`.`voip_peer_preferences` (
|
|
|
|
`id` int(11) UNSIGNED NOT NULL auto_increment,
|
|
|
|
`id` int(11) UNSIGNED NOT NULL auto_increment,
|
|
|
|
`peer_host_id` int(11) UNSIGNED NOT NULL REFERENCES `voip_peer_hosts` (`id`),
|
|
|
|
`peer_host_id` int(11) UNSIGNED NOT NULL REFERENCES `voip_peer_hosts` (`id`),
|
|
|
|
@ -15,6 +17,8 @@ CREATE TABLE `provisioning`.`voip_peer_preferences` (
|
|
|
|
ON DELETE CASCADE ON UPDATE CASCADE
|
|
|
|
ON DELETE CASCADE ON UPDATE CASCADE
|
|
|
|
) ENGINE=InnoDB;
|
|
|
|
) ENGINE=InnoDB;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
USE kamailio;
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE `kamailio`.`peer_preferences` (
|
|
|
|
CREATE TABLE `kamailio`.`peer_preferences` (
|
|
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
|
`uuid` varchar(36) NOT NULL,
|
|
|
|
`uuid` varchar(36) NOT NULL,
|
|
|
|
|