CREATE DATABASE IF NOT EXISTS `foreignkey` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `foreignkey`; -- MySQL dump 10.13 Distrib 5.5.16, for Win32 (x86) -- -- Host: localhost Database: foreignkey -- ------------------------------------------------------ -- Server version 5.5.44-log /*!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 `Agency` -- DROP TABLE IF EXISTS `Agency`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Agency` ( `id` bigint(20) NOT NULL, `name` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Agency` -- LOCK TABLES `Agency` WRITE; /*!40000 ALTER TABLE `Agency` DISABLE KEYS */; /*!40000 ALTER TABLE `Agency` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `Member` -- DROP TABLE IF EXISTS `Member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Member` ( `id` bigint(20) NOT NULL, `email` varchar(255) NOT NULL, `name` varchar(25) NOT NULL, `phone_number` varchar(12) NOT NULL, `agency_id` bigint(20) NOT NULL, `service_provider_id` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UK_9qv6yhjqm8iafto8qk452gx8h` (`email`), UNIQUE KEY `UK9qv6yhjqm8iafto8qk452gx8h` (`email`), KEY `FK_4reu2w5j7pr38t4or4at70q1g` (`agency_id`), KEY `FK_hpdvestjh3fr0mpepjchts0c3` (`service_provider_id`), CONSTRAINT `FKghxmxofmwm0vd3rnuw7k3c8io` FOREIGN KEY (`service_provider_id`) REFERENCES `ServiceProvider` (`id`), CONSTRAINT `FKbbtuuu3otxvy6wf1cjrqmvp64` FOREIGN KEY (`agency_id`) REFERENCES `Agency` (`id`), CONSTRAINT `FK_4reu2w5j7pr38t4or4at70q1g` FOREIGN KEY (`agency_id`) REFERENCES `Agency` (`id`), CONSTRAINT `FK_hpdvestjh3fr0mpepjchts0c3` FOREIGN KEY (`service_provider_id`) REFERENCES `ServiceProvider` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `Member` -- LOCK TABLES `Member` WRITE; /*!40000 ALTER TABLE `Member` DISABLE KEYS */; /*!40000 ALTER TABLE `Member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ServiceProvider` -- DROP TABLE IF EXISTS `ServiceProvider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ServiceProvider` ( `id` bigint(20) NOT NULL, `name` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ServiceProvider` -- LOCK TABLES `ServiceProvider` WRITE; /*!40000 ALTER TABLE `ServiceProvider` DISABLE KEYS */; /*!40000 ALTER TABLE `ServiceProvider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hibernate_sequence` -- DROP TABLE IF EXISTS `hibernate_sequence`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hibernate_sequence` ( `next_val` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hibernate_sequence` -- LOCK TABLES `hibernate_sequence` WRITE; /*!40000 ALTER TABLE `hibernate_sequence` DISABLE KEYS */; INSERT INTO `hibernate_sequence` (`next_val`) VALUES (1); /*!40000 ALTER TABLE `hibernate_sequence` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'foreignkey' -- /*!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 2016-02-29 11:33:36