comments.sql 453 B

12345678910
  1. CREATE TABLE IF NOT EXISTS `comments` (
  2. `serverId` int(8) NOT NULL DEFAULT '0',
  3. `comment_id` int(8) NOT NULL DEFAULT '0',
  4. `comment_ownerid` int(8) NOT NULL DEFAULT '0',
  5. `comment_date` decimal(20,0) NOT NULL DEFAULT '0',
  6. `comment_post_id` int(8) NOT NULL DEFAULT '0',
  7. `comment_topic_id` int(8) NOT NULL DEFAULT '0',
  8. `comment_forum_id` int(8) NOT NULL DEFAULT '0',
  9. `comment_txt` text NOT NULL
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;