Advertisement
Guest User

Untitled

a guest
Jun 13th, 2017
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.38 KB | None | 0 0
  1. -- MySQL dump 10.13 Distrib 5.7.18, for Linux (x86_64)
  2. --
  3. -- Host: localhost Database: timetable_uph_edu_pl
  4. -- ------------------------------------------------------
  5. -- Server version 5.7.18-0ubuntu0.16.04.1
  6.  
  7. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  8. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  9. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  15. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  16. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  17.  
  18. --
  19. -- Table structure for table `event`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `event`;
  23. /*!40101 SET @saved_cs_client = @@character_set_client */;
  24. /*!40101 SET character_set_client = utf8 */;
  25. CREATE TABLE `event` (
  26. `id` int(11) NOT NULL AUTO_INCREMENT,
  27. `subject_id` int(11) NOT NULL,
  28. `tutor_id` int(11) DEFAULT NULL,
  29. `day` smallint(6) NOT NULL,
  30. `start_hour` smallint(6) NOT NULL,
  31. `start_minute` smallint(6) NOT NULL,
  32. `end_hour` smallint(6) NOT NULL,
  33. `end_minute` smallint(6) NOT NULL,
  34. PRIMARY KEY (`id`),
  35. KEY `fk_event_tutor1_idx` (`tutor_id`),
  36. KEY `fk_event_subject1_idx` (`subject_id`),
  37. CONSTRAINT `FK_3BAE0AA7208F64F1` FOREIGN KEY (`tutor_id`) REFERENCES `tutor` (`id`),
  38. CONSTRAINT `FK_3BAE0AA723EDC87` FOREIGN KEY (`subject_id`) REFERENCES `subject` (`id`)
  39. ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  40. /*!40101 SET character_set_client = @saved_cs_client */;
  41.  
  42. --
  43. -- Dumping data for table `event`
  44. --
  45.  
  46. LOCK TABLES `event` WRITE;
  47. /*!40000 ALTER TABLE `event` DISABLE KEYS */;
  48. INSERT INTO `event` VALUES (1,3,16,2,9,45,11,15),(2,4,2,5,11,30,13,0),(3,8,4,4,9,45,11,15),(4,6,1,3,8,0,9,30),(5,1,16,4,9,45,11,15),(6,5,16,5,9,45,11,15),(7,6,6,1,8,0,9,30),(8,8,15,1,8,0,9,30),(9,4,4,1,8,0,9,30),(10,10,7,5,8,0,9,30),(11,6,6,4,11,30,13,0),(12,6,2,1,9,45,11,15),(13,1,3,5,13,15,14,45),(14,6,4,5,8,0,9,30),(15,7,14,1,8,0,9,30),(16,1,13,3,8,0,9,30),(17,8,10,5,11,30,13,0),(18,3,18,4,11,30,13,0),(19,4,7,5,8,0,9,30),(20,10,1,3,9,45,11,15),(21,5,19,3,15,0,16,30),(22,10,18,4,15,0,16,30),(23,4,19,2,11,30,13,0),(24,7,18,5,11,30,13,0),(25,10,14,1,9,45,11,15),(26,6,19,5,11,30,13,0),(27,10,14,5,15,0,16,30),(28,1,5,1,8,0,9,30),(29,9,3,4,11,30,13,0),(30,9,19,2,13,15,14,45),(31,10,3,4,16,45,18,15),(32,1,2,3,13,15,14,45),(33,10,8,4,9,45,11,15),(34,10,7,5,13,15,14,45),(35,8,17,1,11,30,13,0),(36,1,5,2,16,45,18,15),(37,1,17,5,15,0,16,30),(38,3,17,4,11,30,13,0),(39,1,5,5,16,45,18,15),(40,8,10,1,16,45,18,15),(41,5,8,2,16,45,18,15),(42,3,7,2,16,45,18,15),(43,9,1,2,9,45,11,15),(44,10,7,5,9,45,11,15),(45,3,14,3,15,0,16,30),(46,2,15,5,13,15,14,45),(47,1,1,4,13,15,14,45),(48,3,13,3,13,15,14,45),(49,4,2,1,15,0,16,30),(50,4,17,4,16,45,18,15),(51,1,2,5,15,0,16,30),(52,4,13,2,16,45,18,15),(53,3,16,3,16,45,18,15),(54,5,12,3,15,0,16,30),(55,8,1,5,13,15,14,45),(56,9,18,3,15,0,16,30),(57,2,19,2,13,15,14,45),(58,3,1,2,15,0,16,30),(59,6,8,2,13,15,14,45),(60,7,19,5,16,45,18,15);
  49. /*!40000 ALTER TABLE `event` ENABLE KEYS */;
  50. UNLOCK TABLES;
  51.  
  52. --
  53. -- Table structure for table `event_student_group`
  54. --
  55.  
  56. DROP TABLE IF EXISTS `event_student_group`;
  57. /*!40101 SET @saved_cs_client = @@character_set_client */;
  58. /*!40101 SET character_set_client = utf8 */;
  59. CREATE TABLE `event_student_group` (
  60. `event_id` int(11) NOT NULL,
  61. `student_group_id` int(11) NOT NULL,
  62. PRIMARY KEY (`event_id`,`student_group_id`),
  63. KEY `IDX_C1AE8DF471F7E88B` (`event_id`),
  64. KEY `IDX_C1AE8DF44DDF95DC` (`student_group_id`),
  65. CONSTRAINT `FK_C1AE8DF44DDF95DC` FOREIGN KEY (`student_group_id`) REFERENCES `student_group` (`id`),
  66. CONSTRAINT `FK_C1AE8DF471F7E88B` FOREIGN KEY (`event_id`) REFERENCES `event` (`id`)
  67. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  68. /*!40101 SET character_set_client = @saved_cs_client */;
  69.  
  70. --
  71. -- Dumping data for table `event_student_group`
  72. --
  73.  
  74. LOCK TABLES `event_student_group` WRITE;
  75. /*!40000 ALTER TABLE `event_student_group` DISABLE KEYS */;
  76. INSERT INTO `event_student_group` VALUES (1,1),(1,2),(1,9),(1,15),(1,41),(2,2),(2,3),(2,9),(2,27),(2,42),(3,3),(3,4),(3,12),(3,49),(4,4),(4,5),(4,12),(4,29),(5,5),(5,6),(5,14),(5,15),(6,6),(6,7),(6,16),(6,43),(6,47),(7,4),(7,7),(7,8),(7,22),(7,33),(8,8),(8,9),(8,14),(8,40),(8,44),(9,9),(9,10),(9,11),(9,15),(9,24),(10,11),(10,12),(10,16),(10,47),(11,1),(11,8),(11,12),(11,13),(11,38),(12,11),(12,13),(12,14),(12,25),(12,27),(13,2),(13,5),(13,14),(13,15),(13,50),(14,15),(14,16),(14,37),(14,44),(14,49),(15,8),(15,11),(15,16),(15,17),(15,33),(16,17),(16,18),(16,23),(16,38),(16,39),(17,7),(17,18),(17,19),(17,33),(17,42),(18,13),(18,19),(18,20),(18,40),(18,43),(19,7),(19,20),(19,21),(19,38),(19,46),(20,21),(20,22),(20,32),(20,48),(20,50),(21,1),(21,5),(21,22),(21,23),(21,24),(22,15),(22,23),(22,24),(22,41),(22,44),(23,24),(23,25),(23,26),(23,37),(23,44),(24,8),(24,25),(24,26),(24,33),(24,46),(25,16),(25,26),(25,27),(25,29),(25,43),(26,19),(26,25),(26,26),(26,27),(26,28),(27,5),(27,11),(27,29),(27,30),(27,44),(28,20),(28,30),(28,31),(28,32),(28,48),(29,15),(29,31),(29,32),(29,43),(29,48),(30,1),(30,18),(30,32),(30,33),(30,40),(31,22),(31,33),(31,34),(31,40),(32,3),(32,12),(32,31),(32,34),(32,35),(33,15),(33,30),(33,35),(33,36),(33,42),(34,11),(34,14),(34,15),(34,36),(34,37),(35,1),(35,3),(35,20),(35,37),(35,38),(36,5),(36,11),(36,16),(36,20),(36,38),(37,25),(37,36),(37,37),(37,39),(38,16),(38,18),(38,24),(38,39),(38,40),(39,2),(39,7),(39,33),(39,36),(39,40),(40,5),(40,21),(40,33),(40,39),(40,40),(41,17),(41,18),(41,29),(41,40),(41,41),(42,9),(42,16),(42,31),(42,41),(42,42),(43,9),(43,15),(43,30),(43,42),(43,43),(44,4),(44,11),(44,17),(44,20),(44,43),(45,12),(45,21),(45,39),(45,43),(45,44),(46,13),(46,15),(46,16),(46,44),(46,45),(47,7),(47,39),(47,44),(47,46),(47,47),(48,3),(48,7),(48,16),(48,18),(48,46),(49,5),(49,9),(49,26),(49,37),(49,46),(50,17),(50,32),(50,41),(50,42),(50,47),(51,8),(51,9),(51,21),(51,26),(51,43),(52,1),(52,16),(52,20),(52,25),(52,43),(53,5),(53,7),(53,15),(53,20),(53,36),(54,5),(54,6),(54,20),(54,21),(54,35),(55,2),(55,8),(55,16),(55,18),(55,32),(56,4),(56,9),(56,15),(56,26),(56,32),(57,6),(57,11),(57,17),(57,48),(57,49),(58,1),(58,7),(58,20),(58,26),(59,2),(59,13),(59,19),(59,21),(59,24),(60,3),(60,7),(60,13),(60,16),(60,21);
  77. /*!40000 ALTER TABLE `event_student_group` ENABLE KEYS */;
  78. UNLOCK TABLES;
  79.  
  80. --
  81. -- Table structure for table `field`
  82. --
  83.  
  84. DROP TABLE IF EXISTS `field`;
  85. /*!40101 SET @saved_cs_client = @@character_set_client */;
  86. /*!40101 SET character_set_client = utf8 */;
  87. CREATE TABLE `field` (
  88. `id` int(11) NOT NULL AUTO_INCREMENT,
  89. `tutor_id` int(11) DEFAULT NULL,
  90. `organization_unit_id` int(11) DEFAULT NULL,
  91. `name` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
  92. `mode` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
  93. `semester` int(11) NOT NULL,
  94. `number_of_semester` int(11) DEFAULT NULL,
  95. PRIMARY KEY (`id`),
  96. KEY `fk_field_tutor1_idx` (`tutor_id`),
  97. KEY `fk_field_organization_unit1_idx` (`organization_unit_id`),
  98. CONSTRAINT `FK_5BF54558208F64F1` FOREIGN KEY (`tutor_id`) REFERENCES `tutor` (`id`),
  99. CONSTRAINT `FK_5BF54558356FF84E` FOREIGN KEY (`organization_unit_id`) REFERENCES `organization_unit` (`id`)
  100. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  101. /*!40101 SET character_set_client = @saved_cs_client */;
  102.  
  103. --
  104. -- Dumping data for table `field`
  105. --
  106.  
  107. LOCK TABLES `field` WRITE;
  108. /*!40000 ALTER TABLE `field` DISABLE KEYS */;
  109. INSERT INTO `field` VALUES (1,15,16,'Computer Science1','Part-time',1,NULL),(2,10,13,'Computer Science2','Part-time',2,NULL),(3,13,9,'Computer Science3','Part-time',3,NULL),(4,5,10,'Mathematics4','Part-time',4,8),(5,9,11,'Mathematics5','Part-time',5,6),(6,18,9,'Mathematics6','Part-time',6,6),(7,9,4,'Physics 7','Part-time',3,5),(8,7,8,'Physics 8','Part-time',3,8);
  110. /*!40000 ALTER TABLE `field` ENABLE KEYS */;
  111. UNLOCK TABLES;
  112.  
  113. --
  114. -- Table structure for table `organization_unit`
  115. --
  116.  
  117. DROP TABLE IF EXISTS `organization_unit`;
  118. /*!40101 SET @saved_cs_client = @@character_set_client */;
  119. /*!40101 SET character_set_client = utf8 */;
  120. CREATE TABLE `organization_unit` (
  121. `id` int(11) NOT NULL AUTO_INCREMENT,
  122. `parent_id` int(11) DEFAULT NULL,
  123. `lft` int(11) NOT NULL,
  124. `rgt` int(11) NOT NULL,
  125. `lvl` int(11) NOT NULL,
  126. `name` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
  127. PRIMARY KEY (`id`),
  128. KEY `fk_organization_unit_parent1_idx` (`parent_id`),
  129. CONSTRAINT `FK_E5B232CE727ACA70` FOREIGN KEY (`parent_id`) REFERENCES `organization_unit` (`id`) ON DELETE CASCADE
  130. ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  131. /*!40101 SET character_set_client = @saved_cs_client */;
  132.  
  133. --
  134. -- Dumping data for table `organization_unit`
  135. --
  136.  
  137. LOCK TABLES `organization_unit` WRITE;
  138. /*!40000 ALTER TABLE `organization_unit` DISABLE KEYS */;
  139. INSERT INTO `organization_unit` VALUES (1,NULL,1,46,0,'YLOLP'),(2,1,2,17,1,'Ww'),(3,1,18,45,1,'Wy'),(4,2,3,8,2,'Iuf'),(5,2,9,16,2,'Isz'),(6,3,19,26,2,'Irc'),(7,3,27,36,2,'Inw'),(8,3,37,44,2,'Ixv'),(9,5,10,11,3,'Kez'),(10,4,4,5,3,'Keb'),(11,6,20,21,3,'Krx'),(12,8,38,39,3,'Kpi'),(13,7,28,29,3,'Kpm'),(14,7,30,31,3,'Kih'),(15,5,12,13,3,'Kdi'),(16,8,40,41,3,'Kek'),(17,7,32,33,3,'Kag'),(18,7,34,35,3,'Kzi'),(19,6,22,23,3,'Kss'),(20,8,42,43,3,'Kuf'),(21,6,24,25,3,'Kbo'),(22,5,14,15,3,'Kcx'),(23,4,6,7,3,'Kcs');
  140. /*!40000 ALTER TABLE `organization_unit` ENABLE KEYS */;
  141. UNLOCK TABLES;
  142.  
  143. --
  144. -- Table structure for table `room`
  145. --
  146.  
  147. DROP TABLE IF EXISTS `room`;
  148. /*!40101 SET @saved_cs_client = @@character_set_client */;
  149. /*!40101 SET character_set_client = utf8 */;
  150. CREATE TABLE `room` (
  151. `id` int(11) NOT NULL AUTO_INCREMENT,
  152. `organization_unit_id` int(11) DEFAULT NULL,
  153. `name` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
  154. PRIMARY KEY (`id`),
  155. KEY `fk_room_organization_unit1_idx` (`organization_unit_id`),
  156. CONSTRAINT `FK_729F519B356FF84E` FOREIGN KEY (`organization_unit_id`) REFERENCES `organization_unit` (`id`)
  157. ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  158. /*!40101 SET character_set_client = @saved_cs_client */;
  159.  
  160. --
  161. -- Dumping data for table `room`
  162. --
  163.  
  164. LOCK TABLES `room` WRITE;
  165. /*!40000 ALTER TABLE `room` DISABLE KEYS */;
  166. INSERT INTO `room` VALUES (1,21,'C32'),(2,15,'P064'),(3,13,'T329'),(4,18,'N650'),(5,23,'X580'),(6,3,'M941'),(7,15,'O93'),(8,8,'R799'),(9,9,'R322'),(10,12,'D07'),(11,9,'V004'),(12,6,'K881'),(13,14,'G417'),(14,18,'H750'),(15,13,'T093'),(16,19,'O180'),(17,19,'G252'),(18,15,'M11'),(19,7,'N811'),(20,18,'A171'),(21,9,'P66'),(22,15,'T272'),(23,14,'G246'),(24,22,'E100'),(25,9,'Q706'),(26,7,'T036'),(27,2,'W898'),(28,17,'Z928'),(29,18,'911'),(30,6,'B526');
  167. /*!40000 ALTER TABLE `room` ENABLE KEYS */;
  168. UNLOCK TABLES;
  169.  
  170. --
  171. -- Table structure for table `student_group`
  172. --
  173.  
  174. DROP TABLE IF EXISTS `student_group`;
  175. /*!40101 SET @saved_cs_client = @@character_set_client */;
  176. /*!40101 SET character_set_client = utf8 */;
  177. CREATE TABLE `student_group` (
  178. `id` int(11) NOT NULL AUTO_INCREMENT,
  179. `field_id` int(11) DEFAULT NULL,
  180. `name` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
  181. PRIMARY KEY (`id`),
  182. KEY `fk_student_group_field1_idx` (`field_id`),
  183. CONSTRAINT `FK_E5F73D58443707B0` FOREIGN KEY (`field_id`) REFERENCES `field` (`id`)
  184. ) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  185. /*!40101 SET character_set_client = @saved_cs_client */;
  186.  
  187. --
  188. -- Dumping data for table `student_group`
  189. --
  190.  
  191. LOCK TABLES `student_group` WRITE;
  192. /*!40000 ALTER TABLE `student_group` DISABLE KEYS */;
  193. INSERT INTO `student_group` VALUES (1,8,'H'),(2,1,'J'),(3,5,'G'),(4,1,'M'),(5,2,'S'),(6,8,'K'),(7,1,'V'),(8,7,'D'),(9,1,'F'),(10,8,'G'),(11,6,'K'),(12,5,'Q'),(13,7,'M'),(14,3,'I'),(15,5,'T'),(16,3,''),(17,2,'L'),(18,7,'L'),(19,2,'F'),(20,3,'T'),(21,7,'D'),(22,6,'D'),(23,1,'D'),(24,7,'Z'),(25,6,'C'),(26,3,''),(27,7,'C'),(28,8,'U'),(29,7,'I'),(30,1,'J'),(31,3,'E'),(32,4,'W'),(33,5,'X'),(34,6,'X'),(35,6,'T'),(36,8,'X'),(37,3,'N'),(38,6,'T'),(39,1,''),(40,5,'O'),(41,1,'H'),(42,8,'U'),(43,7,'S'),(44,4,'F'),(45,6,'Y'),(46,2,'U'),(47,3,'C'),(48,8,'H'),(49,3,'E'),(50,5,'K');
  194. /*!40000 ALTER TABLE `student_group` ENABLE KEYS */;
  195. UNLOCK TABLES;
  196.  
  197. --
  198. -- Table structure for table `subject`
  199. --
  200.  
  201. DROP TABLE IF EXISTS `subject`;
  202. /*!40101 SET @saved_cs_client = @@character_set_client */;
  203. /*!40101 SET character_set_client = utf8 */;
  204. CREATE TABLE `subject` (
  205. `id` int(11) NOT NULL AUTO_INCREMENT,
  206. `name` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
  207. PRIMARY KEY (`id`)
  208. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  209. /*!40101 SET character_set_client = @saved_cs_client */;
  210.  
  211. --
  212. -- Dumping data for table `subject`
  213. --
  214.  
  215. LOCK TABLES `subject` WRITE;
  216. /*!40000 ALTER TABLE `subject` DISABLE KEYS */;
  217. INSERT INTO `subject` VALUES (1,'Neurochemistry'),(2,'Earth science'),(3,'Femtochemistry'),(4,'Statistics'),(5,'Computational chemistry'),(6,'Space science'),(7,'Six sigma'),(8,'Wet chemistry'),(9,'Artificial intelligence'),(10,'Statistics');
  218. /*!40000 ALTER TABLE `subject` ENABLE KEYS */;
  219. UNLOCK TABLES;
  220.  
  221. --
  222. -- Table structure for table `tutor`
  223. --
  224.  
  225. DROP TABLE IF EXISTS `tutor`;
  226. /*!40101 SET @saved_cs_client = @@character_set_client */;
  227. /*!40101 SET character_set_client = utf8 */;
  228. CREATE TABLE `tutor` (
  229. `id` int(11) NOT NULL AUTO_INCREMENT,
  230. `organization_unit_id` int(11) DEFAULT NULL,
  231. `room_id` int(11) DEFAULT NULL,
  232. `first_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  233. `last_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  234. `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  235. PRIMARY KEY (`id`),
  236. KEY `fk_tutor_room1_idx` (`room_id`),
  237. KEY `fk_tutor_organization_unit1_idx` (`organization_unit_id`),
  238. CONSTRAINT `FK_99074648356FF84E` FOREIGN KEY (`organization_unit_id`) REFERENCES `organization_unit` (`id`),
  239. CONSTRAINT `FK_9907464854177093` FOREIGN KEY (`room_id`) REFERENCES `room` (`id`)
  240. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  241. /*!40101 SET character_set_client = @saved_cs_client */;
  242.  
  243. --
  244. -- Dumping data for table `tutor`
  245. --
  246.  
  247. LOCK TABLES `tutor` WRITE;
  248. /*!40000 ALTER TABLE `tutor` DISABLE KEYS */;
  249. INSERT INTO `tutor` VALUES (1,13,18,'Jackson','Ankunding','wjohns@yahoo.com'),(2,13,15,'Myra','Von','nels.cole@hotmail.com'),(3,15,23,'Garth','Walter','boyer.cielo@hotmail.com'),(4,6,11,'Penelope','Stehr','qwaters@yahoo.com'),(5,20,16,'Lottie','Robel','michelle26@yahoo.com'),(6,17,7,'Clay','Berge','hector.russel@gmail.com'),(7,18,12,'Grady','Wiegand','fkertzmann@gmail.com'),(8,9,30,'Gillian','Greenholt','giovani.witting@yahoo.com'),(9,22,17,'Tara','Hilll','alfonzo03@hotmail.com'),(10,21,20,'Carleton','Hagenes','winifred.littel@gmail.com'),(11,5,29,'Woodrow','Ledner','rtrantow@yahoo.com'),(12,21,4,'Janiya','Heathcote','macie41@hotmail.com'),(13,18,27,'Alek','Ullrich','koch.isom@yahoo.com'),(14,10,6,'Bailee','Kuhlman','rmiller@hotmail.com'),(15,10,2,'Kamryn','Franecki','istracke@hotmail.com'),(16,5,27,'Kelsie','Denesik','schaefer.ladarius@hotmail.com'),(17,23,29,'Valentine','Parisian','heber.ziemann@gmail.com'),(18,19,1,'Dawn','Bartell','ehudson@hotmail.com'),(19,14,7,'Lenny','Hegmann','gunner.grimes@hotmail.com'),(20,4,28,'Norberto','DuBuque','sam99@hotmail.com');
  250. /*!40000 ALTER TABLE `tutor` ENABLE KEYS */;
  251. UNLOCK TABLES;
  252.  
  253. --
  254. -- Table structure for table `user`
  255. --
  256.  
  257. DROP TABLE IF EXISTS `user`;
  258. /*!40101 SET @saved_cs_client = @@character_set_client */;
  259. /*!40101 SET character_set_client = utf8 */;
  260. CREATE TABLE `user` (
  261. `id` int(11) NOT NULL AUTO_INCREMENT,
  262. `username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  263. `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  264. PRIMARY KEY (`id`),
  265. UNIQUE KEY `UNIQ_8D93D649F85E0677` (`username`)
  266. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  267. /*!40101 SET character_set_client = @saved_cs_client */;
  268.  
  269. --
  270. -- Dumping data for table `user`
  271. --
  272.  
  273. LOCK TABLES `user` WRITE;
  274. /*!40000 ALTER TABLE `user` DISABLE KEYS */;
  275. INSERT INTO `user` VALUES (1,'root','$2y$13$tct4AGbNDJuYXBJZ5jxgGeUk/2QzFp4uFonnq88c5UEW5UO4qVG.i'),(2,'consequatur','$2y$13$kJFHzDQRjSnPe/sf61Ms5OiCzXL27UEUtgmnv6PpSLwuW97LhrEPC'),(3,'aut','$2y$13$epMeE6JJxwkNBK6MX2vP/e6Rsq4dagNEf1LuqyzOqltiAuTM5bZSm'),(4,'ullam','$2y$13$K4lYMNxWAWjCM7GebZhXu.M0U2mEqdevncf4LaNFp2ZcOHkEMqQ82'),(5,'qui','$2y$13$m3b.AufsunTAM.vYoW7MpOolrC15m58BUQ49VRtok15Z6Vl42oGkG'),(6,'ea','$2y$13$8Gjm49LIwlHEZYsB53USh.Dgu8VLQNJ4wNT8mGoqSiowIDqPQTUZy'),(7,'voluptatem','$2y$13$xYuLlpE5OdPCBf2MOYVlDu8sD45.a9USx1ckHi5Gud2fLy3Wp9ssa'),(8,'cum','$2y$13$2eZa88Y/hnXnkQKxSJQGEee.r9yLt5tMWZlxryhxYOYCLUtMZVkIe'),(9,'vitae','$2y$13$xfqJX.rt5a5fj.L3sdXcFO0BBdV0zoysCGMPdRBC8OLZtBCoG/rfe'),(10,'nostrum','$2y$13$xtvo4mHMP9ibZgG7wi23U.J2xVuvEicHHSe5hsg.Bewe2I6/hQEvW'),(11,'non','$2y$13$W.MOxcxP7OulJDRXYOIix.fQwI/DVczDNv0eqG66YGZFyphSl8892');
  276. /*!40000 ALTER TABLE `user` ENABLE KEYS */;
  277. UNLOCK TABLES;
  278. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  279.  
  280. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  281. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  282. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  283. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  284. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  285. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  286. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  287.  
  288. -- Dump completed on 2017-06-13 9:04:54
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement