Guest User

Untitled

a guest
Jun 23rd, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 15.45 KB | None | 0 0
  1. -- MySQL dump 10.13  Distrib 8.0.15, for Win64 (x86_64)
  2. --
  3. -- Host: localhost    Database: neo
  4. -- ------------------------------------------------------
  5. -- Server version   8.0.15
  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.  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 `addresses`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `addresses`;
  23. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  24.  SET character_set_client = utf8mb4 ;
  25. CREATE TABLE `addresses` (
  26.   `address_id` int(11) NOT NULL AUTO_INCREMENT,
  27.   PRIMARY KEY (`address_id`),
  28.   UNIQUE KEY `address_id_UNIQUE` (`address_id`)
  29. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  30. /*!40101 SET character_set_client = @saved_cs_client */;
  31.  
  32. --
  33. -- Dumping data for table `addresses`
  34. --
  35.  
  36. LOCK TABLES `addresses` WRITE;
  37. /*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
  38. INSERT INTO `addresses` VALUES (1);
  39. /*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
  40. UNLOCK TABLES;
  41.  
  42. --
  43. -- Table structure for table `client_addresses`
  44. --
  45.  
  46. DROP TABLE IF EXISTS `client_addresses`;
  47. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  48.  SET character_set_client = utf8mb4 ;
  49. CREATE TABLE `client_addresses` (
  50.   `address_id` int(11) NOT NULL AUTO_INCREMENT,
  51.   PRIMARY KEY (`address_id`),
  52.   UNIQUE KEY `address_id_UNIQUE` (`address_id`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  54. /*!40101 SET character_set_client = @saved_cs_client */;
  55.  
  56. --
  57. -- Dumping data for table `client_addresses`
  58. --
  59.  
  60. LOCK TABLES `client_addresses` WRITE;
  61. /*!40000 ALTER TABLE `client_addresses` DISABLE KEYS */;
  62. /*!40000 ALTER TABLE `client_addresses` ENABLE KEYS */;
  63. UNLOCK TABLES;
  64.  
  65. --
  66. -- Table structure for table `clients`
  67. --
  68.  
  69. DROP TABLE IF EXISTS `clients`;
  70. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  71.  SET character_set_client = utf8mb4 ;
  72. CREATE TABLE `clients` (
  73.   `client_id` int(11) NOT NULL AUTO_INCREMENT,
  74.   PRIMARY KEY (`client_id`),
  75.   UNIQUE KEY `clients_UNIQUE` (`client_id`)
  76. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  77. /*!40101 SET character_set_client = @saved_cs_client */;
  78.  
  79. --
  80. -- Dumping data for table `clients`
  81. --
  82.  
  83. LOCK TABLES `clients` WRITE;
  84. /*!40000 ALTER TABLE `clients` DISABLE KEYS */;
  85. /*!40000 ALTER TABLE `clients` ENABLE KEYS */;
  86. UNLOCK TABLES;
  87.  
  88. --
  89. -- Table structure for table `departments`
  90. --
  91.  
  92. DROP TABLE IF EXISTS `departments`;
  93. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  94.  SET character_set_client = utf8mb4 ;
  95. CREATE TABLE `departments` (
  96.   `department_id` int(11) NOT NULL AUTO_INCREMENT,
  97.   `department` varchar(45) DEFAULT NULL,
  98.   PRIMARY KEY (`department_id`),
  99.   UNIQUE KEY `department_id_UNIQUE` (`department_id`)
  100. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  101. /*!40101 SET character_set_client = @saved_cs_client */;
  102.  
  103. --
  104. -- Dumping data for table `departments`
  105. --
  106.  
  107. LOCK TABLES `departments` WRITE;
  108. /*!40000 ALTER TABLE `departments` DISABLE KEYS */;
  109. /*!40000 ALTER TABLE `departments` ENABLE KEYS */;
  110. UNLOCK TABLES;
  111.  
  112. --
  113. -- Table structure for table `operative_contracted_hours`
  114. --
  115.  
  116. DROP TABLE IF EXISTS `operative_contracted_hours`;
  117. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  118.  SET character_set_client = utf8mb4 ;
  119. CREATE TABLE `operative_contracted_hours` (
  120.   `operative_contracted_hours_id` int(11) NOT NULL AUTO_INCREMENT,
  121.   `user_id` int(11) NOT NULL,
  122.   `week_day` int(1) NOT NULL,
  123.   `start_time` time NOT NULL,
  124.   `finish_time` time NOT NULL,
  125.   PRIMARY KEY (`operative_contracted_hours_id`)
  126. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  127. /*!40101 SET character_set_client = @saved_cs_client */;
  128.  
  129. --
  130. -- Dumping data for table `operative_contracted_hours`
  131. --
  132.  
  133. LOCK TABLES `operative_contracted_hours` WRITE;
  134. /*!40000 ALTER TABLE `operative_contracted_hours` DISABLE KEYS */;
  135. INSERT INTO `operative_contracted_hours` VALUES (1,1,0,'08:00:00','16:00:00'),(2,1,1,'08:00:00','16:00:00'),(3,1,2,'08:00:00','16:00:00'),(4,1,3,'08:00:00','16:00:00'),(5,1,4,'08:00:00','16:00:00');
  136. /*!40000 ALTER TABLE `operative_contracted_hours` ENABLE KEYS */;
  137. UNLOCK TABLES;
  138.  
  139. --
  140. -- Table structure for table `operatives_absent_from_work`
  141. --
  142.  
  143. DROP TABLE IF EXISTS `operatives_absent_from_work`;
  144. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  145.  SET character_set_client = utf8mb4 ;
  146. CREATE TABLE `operatives_absent_from_work` (
  147.   `operative_absent_from_work_id` int(11) NOT NULL AUTO_INCREMENT,
  148.   `user_id` int(11) DEFAULT NULL,
  149.   `start_timestamp` timestamp NULL DEFAULT NULL,
  150.   `end_timestamp` timestamp NULL DEFAULT NULL,
  151.   PRIMARY KEY (`operative_absent_from_work_id`),
  152.   UNIQUE KEY `idoperative_absent_from_work_id_UNIQUE` (`operative_absent_from_work_id`)
  153. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  154. /*!40101 SET character_set_client = @saved_cs_client */;
  155.  
  156. --
  157. -- Dumping data for table `operatives_absent_from_work`
  158. --
  159.  
  160. LOCK TABLES `operatives_absent_from_work` WRITE;
  161. /*!40000 ALTER TABLE `operatives_absent_from_work` DISABLE KEYS */;
  162. /*!40000 ALTER TABLE `operatives_absent_from_work` ENABLE KEYS */;
  163. UNLOCK TABLES;
  164.  
  165. --
  166. -- Table structure for table `operatives_annual_leave`
  167. --
  168.  
  169. DROP TABLE IF EXISTS `operatives_annual_leave`;
  170. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  171.  SET character_set_client = utf8mb4 ;
  172. CREATE TABLE `operatives_annual_leave` (
  173.   `operative_annual_leave` int(11) NOT NULL AUTO_INCREMENT,
  174.   `user_id` int(11) DEFAULT NULL,
  175.   `start_timestamp` timestamp NULL DEFAULT NULL,
  176.   `end_timestamp` timestamp NULL DEFAULT NULL,
  177.   PRIMARY KEY (`operative_annual_leave`)
  178. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  179. /*!40101 SET character_set_client = @saved_cs_client */;
  180.  
  181. --
  182. -- Dumping data for table `operatives_annual_leave`
  183. --
  184.  
  185. LOCK TABLES `operatives_annual_leave` WRITE;
  186. /*!40000 ALTER TABLE `operatives_annual_leave` DISABLE KEYS */;
  187. INSERT INTO `operatives_annual_leave` VALUES (1,1,'2020-06-24 07:00:00','2020-06-24 09:00:00');
  188. /*!40000 ALTER TABLE `operatives_annual_leave` ENABLE KEYS */;
  189. UNLOCK TABLES;
  190.  
  191. --
  192. -- Table structure for table `operatives_tasks`
  193. --
  194.  
  195. DROP TABLE IF EXISTS `operatives_tasks`;
  196. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  197.  SET character_set_client = utf8mb4 ;
  198. CREATE TABLE `operatives_tasks` (
  199.   `operative_task_id` int(11) NOT NULL AUTO_INCREMENT,
  200.   `task_id` int(11) DEFAULT NULL,
  201.   `user_id` varchar(45) DEFAULT NULL,
  202.   `start_timestamp` timestamp NULL DEFAULT NULL,
  203.   `finish_timestamp` timestamp NULL DEFAULT NULL,
  204.   `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  205.   PRIMARY KEY (`operative_task_id`)
  206. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  207. /*!40101 SET character_set_client = @saved_cs_client */;
  208.  
  209. --
  210. -- Dumping data for table `operatives_tasks`
  211. --
  212.  
  213. LOCK TABLES `operatives_tasks` WRITE;
  214. /*!40000 ALTER TABLE `operatives_tasks` DISABLE KEYS */;
  215. INSERT INTO `operatives_tasks` VALUES (1,1,'1','2020-06-23 07:00:00',NULL,'2020-06-23 17:12:08');
  216. /*!40000 ALTER TABLE `operatives_tasks` ENABLE KEYS */;
  217. UNLOCK TABLES;
  218.  
  219. --
  220. -- Table structure for table `task_types`
  221. --
  222.  
  223. DROP TABLE IF EXISTS `task_types`;
  224. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  225.  SET character_set_client = utf8mb4 ;
  226. CREATE TABLE `task_types` (
  227.   `task_type_id` int(11) NOT NULL AUTO_INCREMENT,
  228.   `task_type` varchar(45) DEFAULT NULL,
  229.   `duration_hours` decimal(1,0) DEFAULT NULL,
  230.   PRIMARY KEY (`task_type_id`),
  231.   UNIQUE KEY `task_type_id_UNIQUE` (`task_type_id`)
  232. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  233. /*!40101 SET character_set_client = @saved_cs_client */;
  234.  
  235. --
  236. -- Dumping data for table `task_types`
  237. --
  238.  
  239. LOCK TABLES `task_types` WRITE;
  240. /*!40000 ALTER TABLE `task_types` DISABLE KEYS */;
  241. INSERT INTO `task_types` VALUES (1,'Boiler Install',9);
  242. /*!40000 ALTER TABLE `task_types` ENABLE KEYS */;
  243. UNLOCK TABLES;
  244.  
  245. --
  246. -- Table structure for table `tasks`
  247. --
  248.  
  249. DROP TABLE IF EXISTS `tasks`;
  250. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  251.  SET character_set_client = utf8mb4 ;
  252. CREATE TABLE `tasks` (
  253.   `task_id` int(11) NOT NULL AUTO_INCREMENT,
  254.   `address_id` int(11) DEFAULT NULL,
  255.   `task_type_id` int(11) DEFAULT NULL,
  256.   `description` varchar(45) DEFAULT NULL,
  257.   `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  258.   `updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  259.   PRIMARY KEY (`task_id`)
  260. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  261. /*!40101 SET character_set_client = @saved_cs_client */;
  262.  
  263. --
  264. -- Dumping data for table `tasks`
  265. --
  266.  
  267. LOCK TABLES `tasks` WRITE;
  268. /*!40000 ALTER TABLE `tasks` DISABLE KEYS */;
  269. INSERT INTO `tasks` VALUES (1,1,1,'Install new boiler','2020-06-23 17:07:18',NULL);
  270. /*!40000 ALTER TABLE `tasks` ENABLE KEYS */;
  271. UNLOCK TABLES;
  272.  
  273. --
  274. -- Table structure for table `trade_task_type_mappings`
  275. --
  276.  
  277. DROP TABLE IF EXISTS `trade_task_type_mappings`;
  278. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  279.  SET character_set_client = utf8mb4 ;
  280. CREATE TABLE `trade_task_type_mappings` (
  281.   `trade_task_type_mapping_id` int(11) NOT NULL AUTO_INCREMENT,
  282.   `task_type_id` int(11) DEFAULT NULL,
  283.   `trade_id` int(11) DEFAULT NULL,
  284.   PRIMARY KEY (`trade_task_type_mapping_id`),
  285.   UNIQUE KEY `trade_task_type_UNIQUE` (`trade_task_type_mapping_id`)
  286. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  287. /*!40101 SET character_set_client = @saved_cs_client */;
  288.  
  289. --
  290. -- Dumping data for table `trade_task_type_mappings`
  291. --
  292.  
  293. LOCK TABLES `trade_task_type_mappings` WRITE;
  294. /*!40000 ALTER TABLE `trade_task_type_mappings` DISABLE KEYS */;
  295. /*!40000 ALTER TABLE `trade_task_type_mappings` ENABLE KEYS */;
  296. UNLOCK TABLES;
  297.  
  298. --
  299. -- Table structure for table `trades`
  300. --
  301.  
  302. DROP TABLE IF EXISTS `trades`;
  303. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  304.  SET character_set_client = utf8mb4 ;
  305. CREATE TABLE `trades` (
  306.   `trade_id` int(11) NOT NULL AUTO_INCREMENT,
  307.   `trade` varchar(45) DEFAULT NULL,
  308.   PRIMARY KEY (`trade_id`),
  309.   UNIQUE KEY `trade_id_UNIQUE` (`trade_id`)
  310. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  311. /*!40101 SET character_set_client = @saved_cs_client */;
  312.  
  313. --
  314. -- Dumping data for table `trades`
  315. --
  316.  
  317. LOCK TABLES `trades` WRITE;
  318. /*!40000 ALTER TABLE `trades` DISABLE KEYS */;
  319. /*!40000 ALTER TABLE `trades` ENABLE KEYS */;
  320. UNLOCK TABLES;
  321.  
  322. --
  323. -- Table structure for table `user_permissions`
  324. --
  325.  
  326. DROP TABLE IF EXISTS `user_permissions`;
  327. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  328.  SET character_set_client = utf8mb4 ;
  329. CREATE TABLE `user_permissions` (
  330.   `user_permission_id` int(11) NOT NULL AUTO_INCREMENT,
  331.   `permission` varchar(45) DEFAULT NULL,
  332.   PRIMARY KEY (`user_permission_id`),
  333.   UNIQUE KEY `user_permission_id_UNIQUE` (`user_permission_id`)
  334. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  335. /*!40101 SET character_set_client = @saved_cs_client */;
  336.  
  337. --
  338. -- Dumping data for table `user_permissions`
  339. --
  340.  
  341. LOCK TABLES `user_permissions` WRITE;
  342. /*!40000 ALTER TABLE `user_permissions` DISABLE KEYS */;
  343. /*!40000 ALTER TABLE `user_permissions` ENABLE KEYS */;
  344. UNLOCK TABLES;
  345.  
  346. --
  347. -- Table structure for table `user_role_permission_mappings`
  348. --
  349.  
  350. DROP TABLE IF EXISTS `user_role_permission_mappings`;
  351. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  352.  SET character_set_client = utf8mb4 ;
  353. CREATE TABLE `user_role_permission_mappings` (
  354.   `role_permission_mapping_id` int(11) NOT NULL AUTO_INCREMENT,
  355.   `role_id` int(11) NOT NULL,
  356.   `permission_id` int(11) NOT NULL,
  357.   PRIMARY KEY (`role_permission_mapping_id`),
  358.   UNIQUE KEY `role_permission_id_UNIQUE` (`role_permission_mapping_id`)
  359. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  360. /*!40101 SET character_set_client = @saved_cs_client */;
  361.  
  362. --
  363. -- Dumping data for table `user_role_permission_mappings`
  364. --
  365.  
  366. LOCK TABLES `user_role_permission_mappings` WRITE;
  367. /*!40000 ALTER TABLE `user_role_permission_mappings` DISABLE KEYS */;
  368. /*!40000 ALTER TABLE `user_role_permission_mappings` ENABLE KEYS */;
  369. UNLOCK TABLES;
  370.  
  371. --
  372. -- Table structure for table `user_roles`
  373. --
  374.  
  375. DROP TABLE IF EXISTS `user_roles`;
  376. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  377.  SET character_set_client = utf8mb4 ;
  378. CREATE TABLE `user_roles` (
  379.   `role_id` int(11) NOT NULL AUTO_INCREMENT,
  380.   `role` varchar(45) DEFAULT NULL,
  381.   PRIMARY KEY (`role_id`)
  382. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  383. /*!40101 SET character_set_client = @saved_cs_client */;
  384.  
  385. --
  386. -- Dumping data for table `user_roles`
  387. --
  388.  
  389. LOCK TABLES `user_roles` WRITE;
  390. /*!40000 ALTER TABLE `user_roles` DISABLE KEYS */;
  391. /*!40000 ALTER TABLE `user_roles` ENABLE KEYS */;
  392. UNLOCK TABLES;
  393.  
  394. --
  395. -- Table structure for table `user_roles_mappings`
  396. --
  397.  
  398. DROP TABLE IF EXISTS `user_roles_mappings`;
  399. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  400.  SET character_set_client = utf8mb4 ;
  401. CREATE TABLE `user_roles_mappings` (
  402.   `user_role_mapping_id` int(11) NOT NULL,
  403.   `user_id` int(11) DEFAULT NULL,
  404.   `role_id` int(11) DEFAULT NULL,
  405.   PRIMARY KEY (`user_role_mapping_id`)
  406. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  407. /*!40101 SET character_set_client = @saved_cs_client */;
  408.  
  409. --
  410. -- Dumping data for table `user_roles_mappings`
  411. --
  412.  
  413. LOCK TABLES `user_roles_mappings` WRITE;
  414. /*!40000 ALTER TABLE `user_roles_mappings` DISABLE KEYS */;
  415. /*!40000 ALTER TABLE `user_roles_mappings` ENABLE KEYS */;
  416. UNLOCK TABLES;
  417.  
  418. --
  419. -- Table structure for table `users`
  420. --
  421.  
  422. DROP TABLE IF EXISTS `users`;
  423. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  424.  SET character_set_client = utf8mb4 ;
  425. CREATE TABLE `users` (
  426.   `user_id` int(11) NOT NULL AUTO_INCREMENT,
  427.   `username` varchar(45) DEFAULT NULL,
  428.   `username_checksum` blob,
  429.   `password` blob,
  430.   `email_address` blob,
  431.   `email_address_checksum` blob,
  432.   `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  433.   PRIMARY KEY (`user_id`),
  434.   UNIQUE KEY `user_id_UNIQUE` (`user_id`)
  435. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
  436. /*!40101 SET character_set_client = @saved_cs_client */;
  437.  
  438. --
  439. -- Dumping data for table `users`
  440. --
  441.  
  442. LOCK TABLES `users` WRITE;
  443. /*!40000 ALTER TABLE `users` DISABLE KEYS */;
  444. INSERT INTO `users` VALUES (1,'ricky.powell',NULL,NULL,NULL,NULL,'2020-06-23 16:57:53');
  445. /*!40000 ALTER TABLE `users` ENABLE KEYS */;
  446. UNLOCK TABLES;
  447. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  448.  
  449. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  450. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  451. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  452. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  453. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  454. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  455. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  456.  
  457. -- Dump completed on 2020-06-23 20:02:15
Add Comment
Please, Sign In to add comment