Advertisement
Guest User

Untitled

a guest
May 28th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1.  
  2.  
  3. CREATE TABLE `sitewide_comments` (
  4. `site_cid` bigint(20) NOT NULL auto_increment,
  5. `blog_id` bigint(20) NOT NULL,
  6. `comment_ID` bigint(20) unsigned NOT NULL,
  7. `comment_post_ID` int(11) NOT NULL default '0',
  8. `comment_author` tinytext NOT NULL,
  9. `comment_author_email` varchar(100) NOT NULL default '',
  10. `comment_author_url` varchar(200) NOT NULL default '',
  11. `comment_author_IP` varchar(100) NOT NULL default '',
  12. `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  13. `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  14. `comment_content` text NOT NULL,
  15. `comment_karma` int(11) NOT NULL default '0',
  16. `comment_approved` enum('0','1','spam') NOT NULL default '1',
  17. `comment_agent` varchar(255) NOT NULL default '',
  18. `comment_type` varchar(20) NOT NULL default '',
  19. `comment_parent` bigint(20) NOT NULL default '0',
  20. `user_id` bigint(20) NOT NULL default '0',
  21. PRIMARY KEY (`site_cid`),
  22. KEY `comment_approved` (`comment_approved`),
  23. KEY `comment_post_ID` (`comment_post_ID`)
  24. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=306 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement