44 lines
2.3 KiB
Transact-SQL
44 lines
2.3 KiB
Transact-SQL
DROP TABLE IF EXISTS `wp_comments`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `wp_comments` (
|
|
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
`comment_karma` int(11) NOT NULL DEFAULT '0',
|
|
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
|
|
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`comment_ID`),
|
|
KEY `comment_post_ID` (`comment_post_ID`),
|
|
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
|
|
KEY `comment_date_gmt` (`comment_date_gmt`),
|
|
KEY `comment_parent` (`comment_parent`),
|
|
KEY `comment_author_email` (`comment_author_email`(10))
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `wp_comments`
|
|
--
|
|
|
|
LOCK TABLES `wp_comments` WRITE;
|
|
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
|
|
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','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);
|
|
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
CREATE DATABASE Sales;
|
|
|
|
ALTER DATABASE Test1
|
|
ADD FILEGROUP Test1FG1;
|
|
GO
|