· 8 years ago · Dec 21, 2017, 05:58 PM
1DROP TABLE IF EXISTS `import_time`;
2/*!40101 SET @saved_cs_client = @@character_set_client */;
3/*!40101 SET character_set_client = utf8 */;
4CREATE TABLE `import_time` (
5 `id` int(11) NOT NULL AUTO_INCREMENT,
6 `name_of_table` varchar(45) DEFAULT NULL,
7 `time_of_import` timestamp NULL DEFAULT NULL,
8 PRIMARY KEY (`id`)
9) ENGINE=InnoDB DEFAULT CHARSET=utf8;
10/*!40101 SET character_set_client = @saved_cs_client */;
11
12--
13-- Dumping data for table `import_time`
14--
15
16LOCK TABLES `import_time` WRITE;
17/*!40000 ALTER TABLE `import_time` DISABLE KEYS */;
18/*!40000 ALTER TABLE `import_time` ENABLE KEYS */;
19UNLOCK TABLES;