Add files via upload
This commit is contained in:
parent
fd1fe71033
commit
f037f7b3f6
1 changed files with 30 additions and 3 deletions
|
@ -15,6 +15,32 @@
|
|||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `failed`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `failed`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `failed` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`url_noprefix` text,
|
||||
`time` datetime DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id`),
|
||||
FULLTEXT KEY `url_noprefix` (`url_noprefix`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `failed`
|
||||
--
|
||||
|
||||
LOCK TABLES `failed` WRITE;
|
||||
/*!40000 ALTER TABLE `failed` DISABLE KEYS */;
|
||||
INSERT INTO `failed` VALUES (1,'amazon.com/','2023-06-18 23:05:18');
|
||||
/*!40000 ALTER TABLE `failed` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `rejected`
|
||||
--
|
||||
|
@ -29,7 +55,7 @@ CREATE TABLE `rejected` (
|
|||
`type` int(11) DEFAULT NULL,
|
||||
`date` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
|
@ -38,6 +64,7 @@ CREATE TABLE `rejected` (
|
|||
|
||||
LOCK TABLES `rejected` WRITE;
|
||||
/*!40000 ALTER TABLE `rejected` DISABLE KEYS */;
|
||||
INSERT INTO `rejected` VALUES (1,'http://forgottencomputer.com/retro/sound/','',1,NULL),(2,'http://koshka.love/','',1,NULL),(3,'http://koshka.love/','',1,NULL),(4,'http://digdeeper.club/articles/corona.xhtml','',1,NULL),(5,'https://www.gutenberg.org/files/1695/1695-h/1695-h.htm','',1,NULL),(6,'https://www.gutenberg.org/files/1695/1695-h/1695-h.htm','admin',1,NULL),(7,'http://digdeeper.club/articles/email.xhtml','admin',1,NULL),(8,'http://digdeeper.club/articles/email.xhtml','admin',1,NULL),(9,'https://websitereview.neocities.org/','admin',1,NULL),(10,'https://websitereview.neocities.org/','admin',1,NULL),(11,'https://nmap.org/book/firewall-subversion.html','admin',1,NULL),(12,'bob.com','admin',NULL,'2023-06-01 00:15:48'),(13,'h.com','admin',NULL,'2023-06-01 00:15:48'),(14,'bobbb.com','admin',NULL,'2023-06-01 00:15:48'),(15,'bee.com','admin',NULL,'2023-06-01 00:15:48'),(16,'http://digdeeper.club/articles/liftingtheveil.xhtml','admin',1,'2023-06-01 00:21:37'),(17,'https://gigamonkeys.com/book/practical-building-a-unit-test-framework.html','admin',0,'2023-06-01 00:22:47'),(18,'fddd.com','admin',NULL,'2023-06-12 00:02:44'),(19,'fdsjfksd.com','admin',NULL,'2023-06-12 00:02:44'),(20,'fd.com','admin',NULL,'2023-06-12 00:02:44'),(21,'https://www.techtimes.com/articles/3907/20140302/www-turns-25-a-look-back-at-the-internets-early-days.htm','admin',1,'2023-06-12 01:20:16'),(22,'https://www.nytimes.com/2019/09/02/us/san-francisco-fogcam.html','admin',1,'2023-06-12 01:23:06'),(23,'https://www.imdb.com/','admin',1,'2023-06-12 01:23:33'),(24,'http://web.mit.edu/people/mkgray/net/web-growth-summary.html','admin',1,'2023-06-12 01:23:33'),(25,'https://theathletic.com/','admin',1,'2023-06-12 01:23:33'),(26,'http://bytecollector.com/wish_list.htm','admin',1,'2023-06-14 00:10:41');
|
||||
/*!40000 ALTER TABLE `rejected` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
@ -77,7 +104,7 @@ CREATE TABLE `titlecheck` (
|
|||
`url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
|
||||
`title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
|
@ -98,4 +125,4 @@ UNLOCK TABLES;
|
|||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2023-05-23 9:34:09
|
||||
-- Dump completed on 2023-06-18 23:22:35
|
||||
|
|
Loading…
Add table
Reference in a new issue