Last active
August 29, 2015 14:03
-
-
Save hub-cap/14590f0058b6e48a46fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MySQL dump 10.13 Distrib 5.5.37, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: lbaasproxy | |
-- ------------------------------------------------------ | |
-- Server version 5.5.37-0+wheezy1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; | |
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | |
/*!40103 SET TIME_ZONE='+00:00' */; | |
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | |
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | |
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | |
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | |
-- | |
-- Table structure for table `child_load_balancers` | |
-- | |
DROP TABLE IF EXISTS `child_load_balancers`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `child_load_balancers` ( | |
`id` char(36) NOT NULL, | |
`load_balancer_id` int(11) DEFAULT NULL, | |
`parent_load_balancer_id` int(11) NOT NULL, | |
`port` int(11) NOT NULL, | |
`datastore_type` char(16) DEFAULT NULL, | |
`state` char(20) DEFAULT NULL, | |
`dns_name` char(255) DEFAULT NULL, | |
`private_port` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`), | |
UNIQUE KEY `parent_load_balancer_id` (`parent_load_balancer_id`,`port`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Table structure for table `load_balancer_nodes` | |
-- | |
DROP TABLE IF EXISTS `load_balancer_nodes`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `load_balancer_nodes` ( | |
`id` char(36) NOT NULL DEFAULT '', | |
`child_load_balancer_id` char(36) DEFAULT NULL, | |
`dns_name` char(255) DEFAULT NULL, | |
`primary_node` tinyint(1) DEFAULT '0', | |
`private_ip` char(15) DEFAULT NULL, | |
`node_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
-- | |
-- Table structure for table `parent_load_balancers` | |
-- | |
DROP TABLE IF EXISTS `parent_load_balancers`; | |
/*!40101 SET @saved_cs_client = @@character_set_client */; | |
/*!40101 SET character_set_client = utf8 */; | |
CREATE TABLE `parent_load_balancers` ( | |
`load_balancer_id` int(11) NOT NULL, | |
`virtual_ip_id` int(11) NOT NULL, | |
`address` char(15) DEFAULT NULL, | |
PRIMARY KEY (`load_balancer_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |
/*!40101 SET character_set_client = @saved_cs_client */; | |
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | |
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | |
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | |
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | |
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | |
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | |
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | |
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | |
-- Dump completed on 2014-06-26 0:34:07 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment