|
|
|
|
@ -1999,7 +1999,7 @@ CREATE TABLE `db_schema` (
|
|
|
|
|
`applied_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
UNIQUE KEY `rev_idx` (`revision`,`node`)
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8;
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
@ -2026,7 +2026,7 @@ CREATE TABLE `language_strings` (
|
|
|
|
|
`string` text,
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
UNIQUE KEY `codelang_idx` (`code`,`language`)
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=905 DEFAULT CHARSET=utf8;
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=909 DEFAULT CHARSET=utf8;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
@ -3211,7 +3211,7 @@ CREATE TABLE `voip_preferences` (
|
|
|
|
|
`peer_pref` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
|
`modify_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
|
|
|
`internal` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
|
`data_type` enum('boolean','int','string') NOT NULL DEFAULT 'string',
|
|
|
|
|
`data_type` enum('boolean','int','string','enum') DEFAULT NULL,
|
|
|
|
|
`read_only` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
|
`description` text,
|
|
|
|
|
PRIMARY KEY (`id`),
|
|
|
|
|
@ -3273,6 +3273,22 @@ DELIMITER ;
|
|
|
|
|
/*!50003 SET character_set_results = @saved_cs_results */ ;
|
|
|
|
|
/*!50003 SET collation_connection = @saved_col_connection */ ;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `voip_preferences_enum`
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `voip_preferences_enum`;
|
|
|
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
|
|
|
CREATE TABLE `voip_preferences_enum` (
|
|
|
|
|
`preference_id` int(11) unsigned NOT NULL DEFAULT '0',
|
|
|
|
|
`label` varchar(128) DEFAULT NULL,
|
|
|
|
|
`value` varchar(128) NOT NULL DEFAULT '',
|
|
|
|
|
PRIMARY KEY (`preference_id`,`value`),
|
|
|
|
|
CONSTRAINT `voip_preferences_enum_ibfk_1` FOREIGN KEY (`preference_id`) REFERENCES `voip_preferences` (`id`)
|
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
|
-- Table structure for table `voip_reminder`
|
|
|
|
|
--
|
|
|
|
|
@ -5363,4 +5379,4 @@ CREATE TABLE `se9` (
|
|
|
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
|
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
|
|
|
|
|
|
-- Dump completed on 2012-05-04 13:43:04
|
|
|
|
|
-- Dump completed on 2012-05-05 6:09:24
|
|
|
|
|
|