merge branch ?charactergroupsqueststations?
This commit is contained in:
parent
476c18b6a9
commit
538e1aa8b0
75 changed files with 19305 additions and 959 deletions
160
db/create.sql
160
db/create.sql
|
|
@ -1,8 +1,8 @@
|
|||
-- MySQL dump 10.15 Distrib 10.0.22-MariaDB, for Linux (x86_64)
|
||||
-- MySQL dump 10.16 Distrib 10.1.10-MariaDB, for Linux (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: z
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.0.22-MariaDB-log
|
||||
-- Server version 10.1.10-MariaDB-log
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
|
|
@ -568,6 +568,61 @@ CREATE TABLE `charactergroupsquests_seminaryuploads` (
|
|||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `charactergroupsqueststations`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `charactergroupsqueststations`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `charactergroupsqueststations` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`charactergroupsquest_id` int(11) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`stationtype_id` int(11) NOT NULL,
|
||||
`title` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`url` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`pos` int(10) unsigned NOT NULL,
|
||||
`stationpicture_id` int(11) DEFAULT NULL,
|
||||
`prolog` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`task` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`latitude` decimal(10,6) DEFAULT NULL,
|
||||
`longitude` decimal(10,6) DEFAULT NULL,
|
||||
`righttext` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`wrongtext` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `charactergroupsquest_id_2` (`charactergroupsquest_id`,`url`),
|
||||
UNIQUE KEY `charactergroupsquest_id_3` (`charactergroupsquest_id`,`pos`),
|
||||
KEY `charactergroupsquest_id` (`charactergroupsquest_id`),
|
||||
KEY `charactergroupsqueststationtype_id` (`stationtype_id`),
|
||||
KEY `stationpicture_id` (`stationpicture_id`) USING BTREE,
|
||||
CONSTRAINT `charactergroupsqueststations_ibfk_1` FOREIGN KEY (`charactergroupsquest_id`) REFERENCES `charactergroupsquests` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `charactergroupsqueststations_ibfk_2` FOREIGN KEY (`stationpicture_id`) REFERENCES `seminarymedia` (`id`) ON DELETE SET NULL ON UPDATE SET NULL,
|
||||
CONSTRAINT `charactergroupsqueststations_ibfk_3` FOREIGN KEY (`stationtype_id`) REFERENCES `stationtypes` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `charactergroupsqueststations_charactergroups`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `charactergroupsqueststations_charactergroups`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `charactergroupsqueststations_charactergroups` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`charactergroupsqueststation_id` int(11) NOT NULL,
|
||||
`charactergroup_id` int(11) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`status` tinyint(3) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `charactergroupsqueststation_id` (`charactergroupsqueststation_id`),
|
||||
KEY `charactergroup_id` (`charactergroup_id`),
|
||||
CONSTRAINT `charactergroupsqueststations_charactergroups_ibfk_1` FOREIGN KEY (`charactergroupsqueststation_id`) REFERENCES `charactergroupsqueststations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `charactergroupsqueststations_charactergroups_ibfk_2` FOREIGN KEY (`charactergroup_id`) REFERENCES `charactergroups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `characterroles`
|
||||
--
|
||||
|
|
@ -1915,6 +1970,105 @@ CREATE TABLE `seminaryuploads` (
|
|||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `stationtypes`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `stationtypes`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `stationtypes` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`title` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`url` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`classname` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `title` (`title`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `stationtypes_keyword`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `stationtypes_keyword`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `stationtypes_keyword` (
|
||||
`station_id` int(11) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`created_user_id` int(11) NOT NULL,
|
||||
`keyword_regex` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`station_id`),
|
||||
KEY `created_user_id` (`created_user_id`),
|
||||
CONSTRAINT `stationtypes_keyword_ibfk_1` FOREIGN KEY (`station_id`) REFERENCES `charactergroupsqueststations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `stationtypes_keyword_ibfk_2` FOREIGN KEY (`created_user_id`) REFERENCES `users` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `stationtypes_keyword_charactergroups`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `stationtypes_keyword_charactergroups`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `stationtypes_keyword_charactergroups` (
|
||||
`station_id` int(11) NOT NULL,
|
||||
`charactergroup_id` int(11) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`keyword` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`station_id`,`charactergroup_id`),
|
||||
KEY `charactergroup_id` (`charactergroup_id`),
|
||||
CONSTRAINT `stationtypes_keyword_charactergroups_ibfk_1` FOREIGN KEY (`station_id`) REFERENCES `charactergroupsqueststations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `stationtypes_keyword_charactergroups_ibfk_2` FOREIGN KEY (`charactergroup_id`) REFERENCES `charactergroups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `stationtypes_multiplechoice`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `stationtypes_multiplechoice`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `stationtypes_multiplechoice` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`created_user_id` int(11) NOT NULL,
|
||||
`station_id` int(11) NOT NULL,
|
||||
`pos` int(11) NOT NULL,
|
||||
`answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`tick` tinyint(1) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `questtypes_multiplechoice_id_2` (`station_id`,`pos`),
|
||||
KEY `created_user_id` (`created_user_id`),
|
||||
KEY `questtypes_multiplechoice_id` (`station_id`),
|
||||
CONSTRAINT `stationtypes_multiplechoice_ibfk_1` FOREIGN KEY (`created_user_id`) REFERENCES `users` (`id`),
|
||||
CONSTRAINT `stationtypes_multiplechoice_ibfk_2` FOREIGN KEY (`station_id`) REFERENCES `charactergroupsqueststations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `stationtypes_multiplechoice_charactergroups`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `stationtypes_multiplechoice_charactergroups`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `stationtypes_multiplechoice_charactergroups` (
|
||||
`stationtypes_multiplechoice_id` int(11) NOT NULL,
|
||||
`charactergroup_id` int(11) NOT NULL,
|
||||
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`ticked` tinyint(1) NOT NULL,
|
||||
PRIMARY KEY (`stationtypes_multiplechoice_id`,`charactergroup_id`),
|
||||
KEY `character_id` (`charactergroup_id`),
|
||||
CONSTRAINT `stationtypes_multiplechoice_charactergroups_ibfk_1` FOREIGN KEY (`stationtypes_multiplechoice_id`) REFERENCES `stationtypes_multiplechoice` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `stationtypes_multiplechoice_charactergroups_ibfk_2` FOREIGN KEY (`charactergroup_id`) REFERENCES `charactergroups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `userroles`
|
||||
--
|
||||
|
|
@ -2317,4 +2471,4 @@ DELIMITER ;
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2015-10-30 22:27:53
|
||||
-- Dump completed on 2016-01-15 13:19:51
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
-- MySQL dump 10.15 Distrib 10.0.17-MariaDB, for Linux (x86_64)
|
||||
-- MySQL dump 10.16 Distrib 10.1.9-MariaDB, for Linux (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: z_default
|
||||
-- Host: localhost Database: z
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 10.0.17-MariaDB-log
|
||||
-- Server version 10.1.9-MariaDB-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 */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
LOCK TABLES `achievementconditions` WRITE;
|
||||
/*!40000 ALTER TABLE `achievementconditions` DISABLE KEYS */;
|
||||
INSERT INTO `achievementconditions` VALUES (1,'2014-04-16 19:36:54','date'),(2,'2014-04-16 19:36:54','character'),(3,'2014-04-16 19:36:59','quest'),(4,'2014-04-16 19:36:59','achievement');
|
||||
INSERT INTO `achievementconditions` (`id`, `created`, `condition`) VALUES (1,'2014-04-16 19:36:54','date'),(2,'2014-04-16 19:36:54','character'),(3,'2014-04-16 19:36:59','quest'),(4,'2014-04-16 19:36:59','achievement');
|
||||
/*!40000 ALTER TABLE `achievementconditions` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -177,13 +177,31 @@ LOCK TABLES `charactergroupsquests_seminaryuploads` WRITE;
|
|||
/*!40000 ALTER TABLE `charactergroupsquests_seminaryuploads` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `charactergroupsqueststations`
|
||||
--
|
||||
|
||||
LOCK TABLES `charactergroupsqueststations` WRITE;
|
||||
/*!40000 ALTER TABLE `charactergroupsqueststations` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `charactergroupsqueststations` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `charactergroupsqueststations_charactergroups`
|
||||
--
|
||||
|
||||
LOCK TABLES `charactergroupsqueststations_charactergroups` WRITE;
|
||||
/*!40000 ALTER TABLE `charactergroupsqueststations_charactergroups` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `charactergroupsqueststations_charactergroups` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `characterroles`
|
||||
--
|
||||
|
||||
LOCK TABLES `characterroles` WRITE;
|
||||
/*!40000 ALTER TABLE `characterroles` DISABLE KEYS */;
|
||||
INSERT INTO `characterroles` VALUES (1,'2014-04-16 14:42:54','admin'),(2,'2014-04-16 14:42:54','moderator'),(3,'2014-04-16 14:43:00','user'),(4,'2014-04-16 14:43:00','guest');
|
||||
INSERT INTO `characterroles` (`id`, `created`, `name`) VALUES (1,'2014-04-16 14:42:54','admin'),(2,'2014-04-16 14:42:54','moderator'),(3,'2014-04-16 14:43:00','user'),(4,'2014-04-16 14:43:00','guest');
|
||||
/*!40000 ALTER TABLE `characterroles` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -250,6 +268,15 @@ LOCK TABLES `media` WRITE;
|
|||
/*!40000 ALTER TABLE `media` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `pages`
|
||||
--
|
||||
|
||||
LOCK TABLES `pages` WRITE;
|
||||
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `questgroups`
|
||||
--
|
||||
|
|
@ -382,7 +409,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `questtexttypes` WRITE;
|
||||
/*!40000 ALTER TABLE `questtexttypes` DISABLE KEYS */;
|
||||
INSERT INTO `questtexttypes` VALUES (1,'2014-04-17 09:24:21','Prolog','Prolog'),(2,'2014-04-17 09:24:21','Hint','Hint'),(3,'2014-04-17 09:24:27','Epilog','Epilog');
|
||||
INSERT INTO `questtexttypes` (`id`, `created`, `type`, `url`) VALUES (1,'2014-04-17 09:24:21','Prolog','Prolog'),(2,'2014-04-17 09:24:21','Hint','Hint'),(3,'2014-04-17 09:24:27','Epilog','Epilog');
|
||||
/*!40000 ALTER TABLE `questtexttypes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -401,7 +428,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `questtypes` WRITE;
|
||||
/*!40000 ALTER TABLE `questtypes` DISABLE KEYS */;
|
||||
INSERT INTO `questtypes` VALUES (1,'2014-04-16 18:44:44','Empty','Empty',NULL),(2,'2014-04-16 18:44:44','Boss Fight','Boss-Fight','bossfight'),(3,'2014-04-16 18:45:19','Choice Input','Choice-Input','choiceinput'),(4,'2014-04-16 18:46:02','Crossword','Crossword','crossword'),(5,'2014-04-16 18:46:02','Drag&Drop','Drag&Drop','dragndrop'),(6,'2014-04-16 18:46:23','Multiple Choice','Multiple-Choice','multiplechoice'),(7,'2014-04-16 18:46:23','Submit','Submit','submit'),(8,'2014-04-16 18:46:43','Text Input','Text-Input','textinput');
|
||||
INSERT INTO `questtypes` (`id`, `created`, `title`, `url`, `classname`) VALUES (1,'2014-04-16 18:44:44','Empty','Empty',NULL),(2,'2014-04-16 18:44:44','Boss Fight','Boss-Fight','bossfight'),(3,'2014-04-16 18:45:19','Choice Input','Choice-Input','choiceinput'),(4,'2014-04-16 18:46:02','Crossword','Crossword','crossword'),(5,'2014-04-16 18:46:02','Drag&Drop','Drag&Drop','dragndrop'),(6,'2014-04-16 18:46:23','Multiple Choice','Multiple-Choice','multiplechoice'),(7,'2014-04-16 18:46:23','Submit','Submit','submit'),(8,'2014-04-16 18:46:43','Text Input','Text-Input','textinput');
|
||||
/*!40000 ALTER TABLE `questtypes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -645,7 +672,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `seminarycharacterfieldtypes` WRITE;
|
||||
/*!40000 ALTER TABLE `seminarycharacterfieldtypes` DISABLE KEYS */;
|
||||
INSERT INTO `seminarycharacterfieldtypes` VALUES (1,'2014-04-16 18:50:16','Number','Number'),(2,'2014-04-16 18:50:16','Varchar','Varchar'),(3,'2014-04-16 18:50:24','Text','Text'),(4,'2014-04-16 18:50:24','List','List');
|
||||
INSERT INTO `seminarycharacterfieldtypes` (`id`, `created`, `title`, `url`) VALUES (1,'2014-04-16 18:50:16','Number','Number'),(2,'2014-04-16 18:50:16','Varchar','Varchar'),(3,'2014-04-16 18:50:24','Text','Text'),(4,'2014-04-16 18:50:24','List','List');
|
||||
/*!40000 ALTER TABLE `seminarycharacterfieldtypes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -667,13 +694,59 @@ LOCK TABLES `seminaryuploads` WRITE;
|
|||
/*!40000 ALTER TABLE `seminaryuploads` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `stationtypes`
|
||||
--
|
||||
|
||||
LOCK TABLES `stationtypes` WRITE;
|
||||
/*!40000 ALTER TABLE `stationtypes` DISABLE KEYS */;
|
||||
INSERT INTO `stationtypes` (`id`, `created`, `title`, `url`, `classname`) VALUES (1,'2015-12-25 15:50:52','Empty','Empty',NULL),(2,'2015-12-25 15:50:52','Keyword','Keyword','keyword'),(3,'2015-12-25 15:51:16','Multiple Choice','Multiple-Choice','multiplechoice');
|
||||
/*!40000 ALTER TABLE `stationtypes` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `stationtypes_keyword`
|
||||
--
|
||||
|
||||
LOCK TABLES `stationtypes_keyword` WRITE;
|
||||
/*!40000 ALTER TABLE `stationtypes_keyword` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `stationtypes_keyword` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `stationtypes_keyword_charactergroups`
|
||||
--
|
||||
|
||||
LOCK TABLES `stationtypes_keyword_charactergroups` WRITE;
|
||||
/*!40000 ALTER TABLE `stationtypes_keyword_charactergroups` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `stationtypes_keyword_charactergroups` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `stationtypes_multiplechoice`
|
||||
--
|
||||
|
||||
LOCK TABLES `stationtypes_multiplechoice` WRITE;
|
||||
/*!40000 ALTER TABLE `stationtypes_multiplechoice` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `stationtypes_multiplechoice` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `stationtypes_multiplechoice_charactergroups`
|
||||
--
|
||||
|
||||
LOCK TABLES `stationtypes_multiplechoice_charactergroups` WRITE;
|
||||
/*!40000 ALTER TABLE `stationtypes_multiplechoice_charactergroups` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `stationtypes_multiplechoice_charactergroups` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping data for table `userroles`
|
||||
--
|
||||
|
||||
LOCK TABLES `userroles` WRITE;
|
||||
/*!40000 ALTER TABLE `userroles` DISABLE KEYS */;
|
||||
INSERT INTO `userroles` VALUES (1,'2014-04-16 14:42:54','admin'),(2,'2014-04-16 14:42:54','moderator'),(3,'2014-04-16 14:43:00','user'),(4,'2014-04-16 14:43:00','guest');
|
||||
INSERT INTO `userroles` (`id`, `created`, `name`) VALUES (1,'2014-04-16 14:42:54','admin'),(2,'2014-04-16 14:42:54','moderator'),(3,'2014-04-16 14:43:00','user'),(4,'2014-04-16 14:43:00','guest');
|
||||
/*!40000 ALTER TABLE `userroles` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -683,7 +756,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `users` WRITE;
|
||||
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
|
||||
INSERT INTO `users` VALUES (1,'2015-04-26 11:24:04','admin','admin','Admin','Admin','','$2y$10$1zCozXcIGak552mkv/K3vOPddrisvPlokJvUjHtHj6VBBRcmznXCG',1);
|
||||
INSERT INTO `users` (`id`, `created`, `username`, `url`, `surname`, `prename`, `email`, `password`, `mailing`) VALUES (1,'2015-04-26 11:24:04','admin','admin','Admin','Admin','','$2y$10$1zCozXcIGak552mkv/K3vOPddrisvPlokJvUjHtHj6VBBRcmznXCG',1);
|
||||
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -693,7 +766,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `users_userroles` WRITE;
|
||||
/*!40000 ALTER TABLE `users_userroles` DISABLE KEYS */;
|
||||
INSERT INTO `users_userroles` VALUES (1,1,'2015-04-26 11:33:36');
|
||||
INSERT INTO `users_userroles` (`user_id`, `userrole_id`, `created`) VALUES (1,1,'2015-04-26 11:33:36');
|
||||
/*!40000 ALTER TABLE `users_userroles` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
@ -714,4 +787,4 @@ UNLOCK TABLES;
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2015-04-26 13:34:20
|
||||
-- Dump completed on 2015-12-25 16:51:58
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue