Guest User

Untitled

a guest
Jun 24th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.31 KB | None | 0 0
  1. CREATE TABLE `wp_comments` (
  2.   `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  3.   `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  4.   `comment_author` tinytext NOT NULL,
  5.   `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  6.   `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  7.   `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  8.   `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  9.   `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  10.   `comment_content` text NOT NULL,
  11.   `comment_karma` int(11) NOT NULL DEFAULT '0',
  12.   `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  13.   `comment_agent` varchar(255) NOT NULL DEFAULT '',
  14.   `comment_type` varchar(20) NOT NULL DEFAULT '',
  15.   `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  16.   `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  17.   `comment_subscribe` enum('Y','C','N') NOT NULL DEFAULT 'N',
  18.   PRIMARY KEY (`comment_ID`),
  19.   KEY `comment_approved` (`comment_approved`),
  20.   KEY `comment_post_ID` (`comment_post_ID`),
  21.   KEY `comment_date_gmt` (`comment_date_gmt`),
  22.   KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  23.   KEY `comment_parent` (`comment_parent`),
  24.   KEY `idx_comment_author_email` (`comment_author_email`(20))
  25. ) ENGINE=InnoDB AUTO_INCREMENT=127791 DEFAULT CHARSET=utf8
Add Comment
Please, Sign In to add comment