Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wpscanteam
GitHub Repository: wpscanteam/wpscan
Path: blob/master/spec/fixtures/finders/db_exports/dump.sql
486 views
1
DROP TABLE IF EXISTS `wp_comments`;
2
/*!40101 SET @saved_cs_client = @@character_set_client */;
3
/*!40101 SET character_set_client = utf8 */;
4
CREATE TABLE `wp_comments` (
5
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
6
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
7
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
8
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
9
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
10
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
11
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
12
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
13
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
14
`comment_karma` int(11) NOT NULL DEFAULT '0',
15
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
16
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
17
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
18
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
19
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
20
PRIMARY KEY (`comment_ID`),
21
KEY `comment_post_ID` (`comment_post_ID`),
22
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
23
KEY `comment_date_gmt` (`comment_date_gmt`),
24
KEY `comment_parent` (`comment_parent`),
25
KEY `comment_author_email` (`comment_author_email`(10))
26
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
27
/*!40101 SET character_set_client = @saved_cs_client */;
28
29
--
30
-- Dumping data for table `wp_comments`
31
--
32
33
LOCK TABLES `wp_comments` WRITE;
34
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
35
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','[email protected]','https://wordpress.org/','','2017-02-17 18:22:27','2017-02-17 18:22:27','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
36
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
37
UNLOCK TABLES;
38
39
CREATE DATABASE Sales;
40
41
ALTER DATABASE Test1
42
ADD FILEGROUP Test1FG1;
43
GO
44
45