mirror of https://github.com/sipwise/db-schema.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.7 KiB
84 lines
3.7 KiB
set autocommit=0;
|
|
USE provisioning;
|
|
|
|
CREATE TABLE `voip_header_rule_sets` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`reseller_id` int(11) unsigned NOT NULL DEFAULT '1',
|
|
`name` varchar(255) NOT NULL,
|
|
`description` varchar(255) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `res_name_idx` (`reseller_id`,`name`),
|
|
CONSTRAINT `vhrs_reseller_ref` FOREIGN KEY (`reseller_id`) REFERENCES `billing`.`resellers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
|
|
CREATE TABLE `voip_header_rules` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`set_id` int(11) unsigned NOT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`description` varchar(255) DEFAULT NULL,
|
|
`priority` int(11) unsigned NOT NULL DEFAULT '100',
|
|
`direction` enum('inbound','outbound','local','peer') NOT NULL DEFAULT 'inbound',
|
|
`stopper` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
|
`enabled` tinyint(1) unsigned NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `set_name_idx` (`set_id`,`name`),
|
|
KEY `direction_idx` (`direction`),
|
|
KEY `priority_idx` (`priority`),
|
|
KEY `enabled_idx` (`enabled`),
|
|
CONSTRAINT `v_hr_setid_ref` FOREIGN KEY (`set_id`) REFERENCES `voip_header_rule_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
|
|
CREATE TABLE `voip_header_rule_conditions` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`rule_id` int(11) unsigned NOT NULL,
|
|
`match_type` enum('header','preference','avp') NOT NULL DEFAULT 'header',
|
|
`match_part` enum('full','username','domain','port') NOT NULL DEFAULT 'full',
|
|
`match_name` varchar(255) NOT NULL,
|
|
`expression` enum('is','contains','matches','regexp') NOT NULL,
|
|
`expression_negation` tinyint(1) NOT NULL DEFAULT '0',
|
|
`value_type` enum('input','preference','avp') NOT NULL,
|
|
`rwr_set_id` int(11) unsigned DEFAULT NULL,
|
|
`rwr_dp_id` int(11) unsigned DEFAULT NULL,
|
|
`enabled` tinyint(1) unsigned NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (`id`),
|
|
KEY `rule_id_idx` (`rule_id`),
|
|
KEY `rwr_set_id_idx` (`rwr_set_id`),
|
|
KEY `rwr_dp_id_idx` (`rwr_dp_id`),
|
|
KEY `enabled_idx` (`enabled`),
|
|
CONSTRAINT `v_hrc_ruleid_ref` FOREIGN KEY (`rule_id`) REFERENCES `voip_header_rules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
CONSTRAINT `v_hrc_rwrset_ref` FOREIGN KEY (`rwr_set_id`) REFERENCES `voip_rewrite_rule_sets` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
|
|
);
|
|
|
|
CREATE TABLE `voip_header_rule_condition_values` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`condition_id` int(11) unsigned NOT NULL,
|
|
`value` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `condition_id_idx` (`condition_id`),
|
|
CONSTRAINT `v_hrcv_conditionid_ref` FOREIGN KEY (`condition_id`) REFERENCES `voip_header_rule_conditions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
|
|
CREATE TABLE `voip_header_rule_actions` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`rule_id` int(11) unsigned NOT NULL,
|
|
`header` varchar(255) NOT NULL,
|
|
`header_part` enum('full','username','domain','port') NOT NULL DEFAULT 'full',
|
|
`action_type` enum('set','add','remove','rsub','header','preference') NOT NULL,
|
|
`value_part` enum('full','username','domain','port') NOT NULL DEFAULT 'full',
|
|
`value` varchar(255) DEFAULT NULL,
|
|
`rwr_set_id` int(11) unsigned DEFAULT NULL,
|
|
`rwr_dp_id` int(11) unsigned DEFAULT NULL,
|
|
`priority` int(11) unsigned NOT NULL DEFAULT '100',
|
|
`enabled` tinyint(1) unsigned NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (`id`),
|
|
KEY `rule_id_idx` (`rule_id`),
|
|
KEY `rwr_set_id_idx` (`rwr_set_id`),
|
|
KEY `rwr_dp_id_idx` (`rwr_dp_id`),
|
|
KEY `priority_idx` (`priority`),
|
|
KEY `enabled_idx` (`enabled`),
|
|
CONSTRAINT `v_hra_ruleid_ref` FOREIGN KEY (`rule_id`) REFERENCES `voip_header_rules` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
CONSTRAINT `v_hra_rwrset_ref` FOREIGN KEY (`rwr_set_id`) REFERENCES `voip_rewrite_rule_sets` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
|
|
);
|
|
|
|
COMMIT;
|