Path: blob/master/spec/fixtures/finders/db_exports/dump.sql
486 views
DROP TABLE IF EXISTS `wp_comments`;1/*!40101 SET @saved_cs_client = @@character_set_client */;2/*!40101 SET character_set_client = utf8 */;3CREATE TABLE `wp_comments` (4`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,5`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',6`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,7`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',8`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',9`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',10`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',11`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',12`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,13`comment_karma` int(11) NOT NULL DEFAULT '0',14`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',15`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',16`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',17`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',18`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',19PRIMARY KEY (`comment_ID`),20KEY `comment_post_ID` (`comment_post_ID`),21KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),22KEY `comment_date_gmt` (`comment_date_gmt`),23KEY `comment_parent` (`comment_parent`),24KEY `comment_author_email` (`comment_author_email`(10))25) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;26/*!40101 SET character_set_client = @saved_cs_client */;2728--29-- Dumping data for table `wp_comments`30--3132LOCK TABLES `wp_comments` WRITE;33/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;34INSERT 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);35/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;36UNLOCK TABLES;3738CREATE DATABASE Sales;3940ALTER DATABASE Test141ADD FILEGROUP Test1FG1;42GO434445