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.
db-schema/db_scripts/diff/11819.up

11 lines
311 B

USE provisioning;
CREATE TABLE `voip_cc_mappings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`uuid` char(36) NOT NULL,
`auth_key` varchar(255) NOT NULL,
`source_uuid` char(36) NOT NULL,
PRIMARY KEY (`id`),
KEY `uuid_idx` (`uuid`),
KEY `uuid_authkey_idx` (`uuid`,`auth_key`)
) ENGINE=InnoDB;