-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) -- -- Host: 0.0.0.0 Database: faction -- ------------------------------------------------------ -- Server version 5.5.40-0ubuntu0.14.04.1 /*!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 `answers` -- DROP TABLE IF EXISTS `answers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `answers` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `question_id` int(11) unsigned NOT NULL, `answer` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `answers` -- LOCK TABLES `answers` WRITE; /*!40000 ALTER TABLE `answers` DISABLE KEYS */; INSERT INTO `answers` VALUES (2,3,2,1),(3,3,3,1),(4,5,2,1),(5,5,3,0); /*!40000 ALTER TABLE `answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `elections` -- DROP TABLE IF EXISTS `elections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elections` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `year` int(4) unsigned NOT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `elections` -- LOCK TABLES `elections` WRITE; /*!40000 ALTER TABLE `elections` DISABLE KEYS */; INSERT INTO `elections` VALUES (2,'General elections',2015,'2015-04-15 10:41:41','2015-04-15 10:41:41'),(3,'Local Elections',2015,'2015-04-15 10:41:57','2015-04-15 10:41:57'); /*!40000 ALTER TABLE `elections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `parties` -- DROP TABLE IF EXISTS `parties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `parties` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `logo` varchar(512) NOT NULL, `description` text NOT NULL, `url` varchar(255) DEFAULT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `parties` -- LOCK TABLES `parties` WRITE; /*!40000 ALTER TABLE `parties` DISABLE KEYS */; INSERT INTO `parties` VALUES (3,'Green Party','green logo here','Description','','2015-04-15 10:39:16','2015-04-15 10:39:16'),(4,'Blue Party','blue logo here','Blue Party description','','2015-04-15 10:39:37','2015-04-15 10:39:37'); /*!40000 ALTER TABLE `parties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `questions` -- DROP TABLE IF EXISTS `questions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questions` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `user_id` int(11) unsigned NOT NULL, `election_id` int(11) unsigned NOT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `questions` -- LOCK TABLES `questions` WRITE; /*!40000 ALTER TABLE `questions` DISABLE KEYS */; INSERT INTO `questions` VALUES (2,'Free wifi for all the country?',3,2,'2015-04-15 10:43:52','2015-04-15 10:43:52'),(3,'Free laptop for all students?',3,2,'2015-04-15 10:44:34','2015-04-15 10:44:34'),(4,'Ban IE 6 browser from the country?',3,2,'2015-04-15 10:46:15','2015-04-15 10:46:15'); /*!40000 ALTER TABLE `questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `questions_tags` -- DROP TABLE IF EXISTS `questions_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questions_tags` ( `question_id` int(11) unsigned NOT NULL, `tag_id` int(11) unsigned NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `questions_tags` -- LOCK TABLES `questions_tags` WRITE; /*!40000 ALTER TABLE `questions_tags` DISABLE KEYS */; INSERT INTO `questions_tags` VALUES (2,1,1),(3,1,2),(3,2,3),(4,1,4); /*!40000 ALTER TABLE `questions_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tags` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; INSERT INTO `tags` VALUES (1,'technology'),(2,'economy'); /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(255) DEFAULT NULL, `last_name` varchar(255) DEFAULT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `role` int(4) unsigned NOT NULL, `party_id` int(11) unsigned DEFAULT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (3,'John','Smith','john@example.com','what?',0,NULL,'2015-04-15 10:36:27','2015-04-15 10:40:59'),(5,'Green Party Admin','','admin-green@example.com','what again?',1,NULL,'2015-04-15 10:40:35','2015-04-15 10:40:35'); /*!40000 ALTER TABLE `users` 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 2015-04-15 10:47:47