Skip to content

Instantly share code, notes, and snippets.

@paulbarbu
Created August 8, 2011 15:29
Show Gist options
  • Save paulbarbu/1131958 to your computer and use it in GitHub Desktop.
Save paulbarbu/1131958 to your computer and use it in GitHub Desktop.
-- MySQL dump 10.13 Distrib 5.5.15, for Linux (i686)
--
-- Host: localhost Database: locuitori
-- ------------------------------------------------------
-- Server version 5.5.15-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 `citizens`
--
DROP TABLE IF EXISTS `citizens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citizens` (
`cnp` char(13) NOT NULL,
`firstname` char(20) NOT NULL,
`lastname` char(20) NOT NULL,
PRIMARY KEY (`cnp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `citizens`
--
LOCK TABLES `citizens` WRITE;
/*!40000 ALTER TABLE `citizens` DISABLE KEYS */;
/*!40000 ALTER TABLE `citizens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `citizens_address`
--
DROP TABLE IF EXISTS `citizens_address`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citizens_address` (
`cnp` char(13) NOT NULL,
`address` char(13) NOT NULL,
KEY `cnp` (`cnp`),
CONSTRAINT `citizens_address_ibfk_1` FOREIGN KEY (`cnp`) REFERENCES `citizens` (`cnp`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `citizens_address`
--
LOCK TABLES `citizens_address` WRITE;
/*!40000 ALTER TABLE `citizens_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `citizens_address` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `citizens_phonenumber`
--
DROP TABLE IF EXISTS `citizens_phonenumber`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citizens_phonenumber` (
`cnp` char(13) NOT NULL,
`phonenumber` char(20) NOT NULL,
KEY `cnp` (`cnp`),
CONSTRAINT `citizens_phonenumber_ibfk_1` FOREIGN KEY (`cnp`) REFERENCES `citizens` (`cnp`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `citizens_phonenumber`
--
LOCK TABLES `citizens_phonenumber` WRITE;
/*!40000 ALTER TABLE `citizens_phonenumber` DISABLE KEYS */;
/*!40000 ALTER TABLE `citizens_phonenumber` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `citizens_sex`
--
DROP TABLE IF EXISTS `citizens_sex`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citizens_sex` (
`cnp` char(13) NOT NULL,
`sex` char(1) NOT NULL,
PRIMARY KEY (`cnp`),
CONSTRAINT `citizens_sex_ibfk_1` FOREIGN KEY (`cnp`) REFERENCES `citizens` (`cnp`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `citizens_sex`
--
LOCK TABLES `citizens_sex` WRITE;
/*!40000 ALTER TABLE `citizens_sex` DISABLE KEYS */;
/*!40000 ALTER TABLE `citizens_sex` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2011-08-08 18:30:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment