Skip to content

Commit 00f3e7f

Browse files
first deployable commit
0 parents  commit 00f3e7f

File tree

3,366 files changed

+381458
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,366 files changed

+381458
-0
lines changed

.DS_Store

10 KB
Binary file not shown.

.env

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
DB_NAME=easymcq
2+
DB_USER=root
3+
DB_PASSWORD=password
4+
DB_HOST=localhost
5+
DB_DIALECT=mysql
6+
JWT_SECRET=practotechnologies
7+
EASY=1
8+
MEDIUM=3
9+
HARD=5

VARS.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const VARS = () => {
2+
return {
3+
db: "heroku_b6f940fab497129",
4+
username: "ba9f3612eb67d3",
5+
password: "ce42caab",
6+
host: "eu-cdbr-west-02.cleardb.net",
7+
dialect: "mysql"
8+
}
9+
}
10+
11+
module.exports = VARS;

easymcq.sql

+329
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,329 @@
1+
-- MySQL dump 10.13 Distrib 8.0.18, for osx10.14 (x86_64)
2+
--
3+
-- Host: localhost Database: easymcq
4+
-- ------------------------------------------------------
5+
-- Server version 8.0.18
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+
/*!50503 SET NAMES utf8mb4 */;
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 `Admin`
20+
--
21+
22+
DROP TABLE IF EXISTS `Admin`;
23+
/*!40101 SET @saved_cs_client = @@character_set_client */;
24+
/*!50503 SET character_set_client = utf8mb4 */;
25+
CREATE TABLE `Admin` (
26+
`email` varchar(256) COLLATE utf8mb4_general_ci NOT NULL,
27+
`password` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
28+
PRIMARY KEY (`email`)
29+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
30+
/*!40101 SET character_set_client = @saved_cs_client */;
31+
32+
--
33+
-- Dumping data for table `Admin`
34+
--
35+
36+
LOCK TABLES `Admin` WRITE;
37+
/*!40000 ALTER TABLE `Admin` DISABLE KEYS */;
38+
INSERT INTO `Admin` VALUES ('[email protected]','e756a91150ea80a4ccb4fc8299a45469d517830f06dd66514115391d75d48e21');
39+
/*!40000 ALTER TABLE `Admin` ENABLE KEYS */;
40+
UNLOCK TABLES;
41+
42+
--
43+
-- Table structure for table `Answer`
44+
--
45+
46+
DROP TABLE IF EXISTS `Answer`;
47+
/*!40101 SET @saved_cs_client = @@character_set_client */;
48+
/*!50503 SET character_set_client = utf8mb4 */;
49+
CREATE TABLE `Answer` (
50+
`ans_id` bigint(20) NOT NULL AUTO_INCREMENT,
51+
`answer` varchar(1500) COLLATE utf8mb4_general_ci NOT NULL,
52+
`correct` tinyint(1) NOT NULL,
53+
PRIMARY KEY (`ans_id`)
54+
) ENGINE=InnoDB AUTO_INCREMENT=583 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
55+
/*!40101 SET character_set_client = @saved_cs_client */;
56+
57+
--
58+
-- Dumping data for table `Answer`
59+
--
60+
61+
LOCK TABLES `Answer` WRITE;
62+
/*!40000 ALTER TABLE `Answer` DISABLE KEYS */;
63+
INSERT INTO `Answer` VALUES (532,'Ramesh',0),(533,'Suhas',0),(534,'Ramnath Kovind',1),(535,'Trump',0),(536,'Venkaiah Naidu',0),(537,'Mark Zuckerberg',1),(538,'Deepak R',0),(539,'Ferrari',0),(540,'Maruti Suzuki',1),(541,'Lamborghini',0),(542,'100',1),(543,'20',0),(544,'1 million',0),(545,'Proxima Centauri',0),(546,'The Sun',1),(547,'Mars',0),(548,'Jupiter',0),(549,'tan(x)',0),(550,'-cos(x)',1),(551,'sec^2(x)',0),(552,'Floyd\'s ',0),(553,'Warshall\'s',0),(554,'Binary Search',0),(555,'Dijkstra\'s',1),(556,'Linus Torvalds',1),(557,'Deepak R',0),(558,'Bill Gates',0),(559,'Dipu Saha',0),(560,'3x10^8m/s',1),(561,'9x10^8m/s',0),(562,'3x10^6m/s',0),(563,'Polymorphism',0),(564,'Inheritance',1),(565,'Overloading',0),(566,'Downloading',0),(567,'Builder method',1),(568,'factory method',0),(569,'None of the above',0),(570,'observer pattern',0),(571,'regular expressions',0),(572,'Simon Gilchrist',0),(573,'Dennis M Ritchie',1),(574,'Harry Potter',0),(575,'11',0),(576,'3',0),(577,'1',0),(578,'None of the above',1),(579,'11',0),(580,'1',0),(581,'None of the above',1),(582,'3',0);
64+
/*!40000 ALTER TABLE `Answer` ENABLE KEYS */;
65+
UNLOCK TABLES;
66+
67+
--
68+
-- Table structure for table `Question`
69+
--
70+
71+
DROP TABLE IF EXISTS `Question`;
72+
/*!40101 SET @saved_cs_client = @@character_set_client */;
73+
/*!50503 SET character_set_client = utf8mb4 */;
74+
CREATE TABLE `Question` (
75+
`quest_id` bigint(20) NOT NULL AUTO_INCREMENT,
76+
`question` varchar(1500) COLLATE utf8mb4_general_ci NOT NULL,
77+
`type` tinyint(4) NOT NULL,
78+
PRIMARY KEY (`quest_id`),
79+
KEY `type` (`type`)
80+
) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
81+
/*!40101 SET character_set_client = @saved_cs_client */;
82+
83+
--
84+
-- Dumping data for table `Question`
85+
--
86+
87+
LOCK TABLES `Question` WRITE;
88+
/*!40000 ALTER TABLE `Question` DISABLE KEYS */;
89+
INSERT INTO `Question` VALUES (170,'Who is the president of India?',1),(171,'Who is the founder of facebook?',1),(172,'Car company that owns Alto?',1),(173,'if 1 apple costs 10 rupees, 10 apples cost?',2),(174,'Which is the nearest star?',1),(175,'Integral of sin(x)?',3),(176,'Google maps uses which algorithm?',2),(177,'Who created Linux?',2),(178,'velocity of light in vacuum?',3),(179,'Property of inheriting properties from parents in OOPs?',2),(180,'Which one of the following is an Anti-pattern?',3),(181,'Who is the creator of C?',2),(182,'what is 1+1?',1),(183,'what is 1+1?',1);
90+
/*!40000 ALTER TABLE `Question` ENABLE KEYS */;
91+
UNLOCK TABLES;
92+
93+
--
94+
-- Table structure for table `QuestionLibrary`
95+
--
96+
97+
DROP TABLE IF EXISTS `QuestionLibrary`;
98+
/*!40101 SET @saved_cs_client = @@character_set_client */;
99+
/*!50503 SET character_set_client = utf8mb4 */;
100+
CREATE TABLE `QuestionLibrary` (
101+
`quest_id` bigint(20) NOT NULL,
102+
`ans_id` bigint(20) NOT NULL,
103+
PRIMARY KEY (`quest_id`,`ans_id`),
104+
KEY `ans_id` (`ans_id`),
105+
CONSTRAINT `questionlibrary_ibfk_1` FOREIGN KEY (`quest_id`) REFERENCES `question` (`quest_id`) ON UPDATE CASCADE,
106+
CONSTRAINT `questionlibrary_ibfk_2` FOREIGN KEY (`ans_id`) REFERENCES `answer` (`ans_id`) ON UPDATE CASCADE
107+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
108+
/*!40101 SET character_set_client = @saved_cs_client */;
109+
110+
--
111+
-- Dumping data for table `QuestionLibrary`
112+
--
113+
114+
LOCK TABLES `QuestionLibrary` WRITE;
115+
/*!40000 ALTER TABLE `QuestionLibrary` DISABLE KEYS */;
116+
INSERT INTO `QuestionLibrary` VALUES (170,532),(170,533),(170,534),(170,535),(171,536),(171,537),(171,538),(172,539),(172,540),(172,541),(173,542),(173,543),(173,544),(174,545),(174,546),(174,547),(174,548),(175,549),(175,550),(175,551),(176,552),(176,553),(176,554),(176,555),(177,556),(177,557),(177,558),(177,559),(178,560),(178,561),(178,562),(179,563),(179,564),(179,565),(179,566),(180,567),(180,568),(180,569),(180,570),(180,571),(181,572),(181,573),(181,574),(182,575),(182,576),(182,577),(182,578),(183,579),(183,580),(183,581),(183,582);
117+
/*!40000 ALTER TABLE `QuestionLibrary` ENABLE KEYS */;
118+
UNLOCK TABLES;
119+
120+
--
121+
-- Table structure for table `QuestionPool`
122+
--
123+
124+
DROP TABLE IF EXISTS `QuestionPool`;
125+
/*!40101 SET @saved_cs_client = @@character_set_client */;
126+
/*!50503 SET character_set_client = utf8mb4 */;
127+
CREATE TABLE `QuestionPool` (
128+
`test_id` int(11) NOT NULL,
129+
`quest_id` bigint(20) NOT NULL,
130+
PRIMARY KEY (`test_id`,`quest_id`),
131+
KEY `quest_id` (`quest_id`),
132+
CONSTRAINT `questionpool_ibfk_1` FOREIGN KEY (`test_id`) REFERENCES `test` (`test_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
133+
CONSTRAINT `questionpool_ibfk_2` FOREIGN KEY (`quest_id`) REFERENCES `question` (`quest_id`) ON DELETE RESTRICT ON UPDATE CASCADE
134+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
135+
/*!40101 SET character_set_client = @saved_cs_client */;
136+
137+
--
138+
-- Dumping data for table `QuestionPool`
139+
--
140+
141+
LOCK TABLES `QuestionPool` WRITE;
142+
/*!40000 ALTER TABLE `QuestionPool` DISABLE KEYS */;
143+
INSERT INTO `QuestionPool` VALUES (17,170),(27,170),(17,171),(27,171),(17,172),(27,172),(17,173),(17,174),(17,175),(17,176),(27,176),(17,177),(27,177),(17,178),(27,178),(17,179),(17,180),(27,180),(17,181),(17,182),(27,182),(17,183);
144+
/*!40000 ALTER TABLE `QuestionPool` ENABLE KEYS */;
145+
UNLOCK TABLES;
146+
147+
--
148+
-- Table structure for table `Scoreboard`
149+
--
150+
151+
DROP TABLE IF EXISTS `Scoreboard`;
152+
/*!40101 SET @saved_cs_client = @@character_set_client */;
153+
/*!50503 SET character_set_client = utf8mb4 */;
154+
CREATE TABLE `Scoreboard` (
155+
`user_id` int(11) NOT NULL,
156+
`test_id` int(11) NOT NULL,
157+
`score` mediumint(9) DEFAULT NULL,
158+
PRIMARY KEY (`user_id`,`test_id`),
159+
KEY `test_id` (`test_id`),
160+
CONSTRAINT `scoreboard_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
161+
CONSTRAINT `scoreboard_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `test` (`test_id`) ON DELETE RESTRICT ON UPDATE CASCADE
162+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
163+
/*!40101 SET character_set_client = @saved_cs_client */;
164+
165+
--
166+
-- Dumping data for table `Scoreboard`
167+
--
168+
169+
LOCK TABLES `Scoreboard` WRITE;
170+
/*!40000 ALTER TABLE `Scoreboard` DISABLE KEYS */;
171+
/*!40000 ALTER TABLE `Scoreboard` ENABLE KEYS */;
172+
UNLOCK TABLES;
173+
174+
--
175+
-- Table structure for table `Test`
176+
--
177+
178+
DROP TABLE IF EXISTS `Test`;
179+
/*!40101 SET @saved_cs_client = @@character_set_client */;
180+
/*!50503 SET character_set_client = utf8mb4 */;
181+
CREATE TABLE `Test` (
182+
`test_id` int(11) NOT NULL AUTO_INCREMENT,
183+
`test_name` varchar(512) COLLATE utf8mb4_general_ci DEFAULT NULL,
184+
`proctor` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL,
185+
`duration` smallint(6) DEFAULT NULL,
186+
`sched_start` bigint(20) DEFAULT NULL,
187+
`sched_end` bigint(20) DEFAULT NULL,
188+
`easy` smallint(6) DEFAULT '0',
189+
`medium` smallint(6) DEFAULT '0',
190+
`hard` smallint(6) DEFAULT '0',
191+
PRIMARY KEY (`test_id`)
192+
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
193+
/*!40101 SET character_set_client = @saved_cs_client */;
194+
195+
--
196+
-- Dumping data for table `Test`
197+
--
198+
199+
LOCK TABLES `Test` WRITE;
200+
/*!40000 ALTER TABLE `Test` DISABLE KEYS */;
201+
INSERT INTO `Test` VALUES (17,'REVA Practo Test','123123',60,1580077320,1580293440,4,3,2),(18,'BMSIT Practo Test','123123',180,885505860,1590231240,5,3,2),(19,'BMSIT Practo Test','123123',180,885505860,1590231240,5,3,2),(20,'BMSIT Practo Test','123123',180,885505860,1590231240,4,3,2),(21,'BMSIT Practo Test','123123',180,885505860,1590231240,4,3,2),(22,'dasd','adsad',232,-9223372036854775808,-9223372036854775808,222,222,222),(23,'dasd','adsad',232,-9223372036854775808,-9223372036854775808,222,222,222),(24,'dasd','adsad',232,-9223372036854775808,-9223372036854775808,222,222,222),(25,'dasdsad','asdasdas',123,-9223372036854775808,-9223372036854775808,0,0,0),(26,'dasdsad','asdasdas',123,-9223372036854775808,-9223372036854775808,23,23,23),(27,'Dipu','12312',232,-9223372036854775808,-9223372036854775808,52,51,56);
202+
/*!40000 ALTER TABLE `Test` ENABLE KEYS */;
203+
UNLOCK TABLES;
204+
205+
--
206+
-- Table structure for table `TestInvite`
207+
--
208+
209+
DROP TABLE IF EXISTS `TestInvite`;
210+
/*!40101 SET @saved_cs_client = @@character_set_client */;
211+
/*!50503 SET character_set_client = utf8mb4 */;
212+
CREATE TABLE `TestInvite` (
213+
`user_id` int(11) NOT NULL,
214+
`test_id` int(11) NOT NULL,
215+
PRIMARY KEY (`user_id`,`test_id`),
216+
KEY `test_id` (`test_id`),
217+
CONSTRAINT `testinvite_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
218+
CONSTRAINT `testinvite_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `test` (`test_id`) ON DELETE RESTRICT ON UPDATE CASCADE
219+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
220+
/*!40101 SET character_set_client = @saved_cs_client */;
221+
222+
--
223+
-- Dumping data for table `TestInvite`
224+
--
225+
226+
LOCK TABLES `TestInvite` WRITE;
227+
/*!40000 ALTER TABLE `TestInvite` DISABLE KEYS */;
228+
INSERT INTO `TestInvite` VALUES (4,17);
229+
/*!40000 ALTER TABLE `TestInvite` ENABLE KEYS */;
230+
UNLOCK TABLES;
231+
232+
--
233+
-- Table structure for table `User`
234+
--
235+
236+
DROP TABLE IF EXISTS `User`;
237+
/*!40101 SET @saved_cs_client = @@character_set_client */;
238+
/*!50503 SET character_set_client = utf8mb4 */;
239+
CREATE TABLE `User` (
240+
`user_id` int(11) NOT NULL AUTO_INCREMENT,
241+
`name` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
242+
`email` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
243+
`phone` char(10) COLLATE utf8mb4_general_ci DEFAULT NULL,
244+
`DOB` date DEFAULT NULL,
245+
`college_name` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
246+
`degree` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
247+
`password` varchar(256) COLLATE utf8mb4_general_ci DEFAULT NULL,
248+
PRIMARY KEY (`user_id`)
249+
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
250+
/*!40101 SET character_set_client = @saved_cs_client */;
251+
252+
--
253+
-- Dumping data for table `User`
254+
--
255+
256+
LOCK TABLES `User` WRITE;
257+
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
258+
INSERT INTO `User` VALUES (4,'Deepak R','[email protected]','9740720910','1998-08-31','REVA University','B.Tech','e756a91150ea80a4ccb4fc8299a45469d517830f06dd66514115391d75d48e21'),(5,'pruthviraj','[email protected]','97987987','1311-03-13','BMSIT','idk','3cc849279ba298b587a34cabaeffc5ecb3a044bbf97c516fab7ede9d1af77cfa'),(6,'Deepak Ramachandran','[email protected]','9740720910','1998-03-10','IIT Bangalore','B.Arch','e756a91150ea80a4ccb4fc8299a45469d517830f06dd66514115391d75d48e21'),(7,'Deepak Ramachandran','[email protected]','9740720910','1998-03-10','IIT Bangalore','B.Arch','e756a91150ea80a4ccb4fc8299a45469d517830f06dd66514115391d75d48e21');
259+
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
260+
UNLOCK TABLES;
261+
262+
--
263+
-- Table structure for table `UserAnswers`
264+
--
265+
266+
DROP TABLE IF EXISTS `UserAnswers`;
267+
/*!40101 SET @saved_cs_client = @@character_set_client */;
268+
/*!50503 SET character_set_client = utf8mb4 */;
269+
CREATE TABLE `UserAnswers` (
270+
`user_id` int(11) NOT NULL,
271+
`test_id` int(11) NOT NULL,
272+
`quest_id` bigint(20) NOT NULL,
273+
`ans_id` bigint(20) DEFAULT NULL,
274+
PRIMARY KEY (`user_id`,`test_id`,`quest_id`),
275+
KEY `test_id` (`test_id`),
276+
KEY `quest_id` (`quest_id`),
277+
KEY `ans_id` (`ans_id`),
278+
CONSTRAINT `useranswers_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
279+
CONSTRAINT `useranswers_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `test` (`test_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
280+
CONSTRAINT `useranswers_ibfk_3` FOREIGN KEY (`quest_id`) REFERENCES `question` (`quest_id`) ON DELETE RESTRICT ON UPDATE CASCADE,
281+
CONSTRAINT `useranswers_ibfk_4` FOREIGN KEY (`ans_id`) REFERENCES `answer` (`ans_id`) ON DELETE RESTRICT ON UPDATE CASCADE
282+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
283+
/*!40101 SET character_set_client = @saved_cs_client */;
284+
285+
--
286+
-- Dumping data for table `UserAnswers`
287+
--
288+
289+
LOCK TABLES `UserAnswers` WRITE;
290+
/*!40000 ALTER TABLE `UserAnswers` DISABLE KEYS */;
291+
INSERT INTO `UserAnswers` VALUES (4,17,171,538),(4,17,174,546),(4,17,182,578);
292+
/*!40000 ALTER TABLE `UserAnswers` ENABLE KEYS */;
293+
UNLOCK TABLES;
294+
295+
--
296+
-- Table structure for table `UserQuestions`
297+
--
298+
299+
DROP TABLE IF EXISTS `UserQuestions`;
300+
/*!40101 SET @saved_cs_client = @@character_set_client */;
301+
/*!50503 SET character_set_client = utf8mb4 */;
302+
CREATE TABLE `UserQuestions` (
303+
`test_id` int(11) NOT NULL,
304+
`user_id` int(11) NOT NULL,
305+
`quest_id` bigint(20) NOT NULL,
306+
PRIMARY KEY (`test_id`,`user_id`,`quest_id`)
307+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
308+
/*!40101 SET character_set_client = @saved_cs_client */;
309+
310+
--
311+
-- Dumping data for table `UserQuestions`
312+
--
313+
314+
LOCK TABLES `UserQuestions` WRITE;
315+
/*!40000 ALTER TABLE `UserQuestions` DISABLE KEYS */;
316+
INSERT INTO `UserQuestions` VALUES (17,4,171),(17,4,174),(17,4,175),(17,4,176),(17,4,177),(17,4,179),(17,4,180),(17,4,182),(17,4,183);
317+
/*!40000 ALTER TABLE `UserQuestions` ENABLE KEYS */;
318+
UNLOCK TABLES;
319+
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
320+
321+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
322+
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
323+
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
324+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
325+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
326+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
327+
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
328+
329+
-- Dump completed on 2020-01-27 23:29:49

0 commit comments

Comments
 (0)