· 8 years ago · Nov 27, 2017, 05:22 PM
1DROP TABLE IF EXISTS `site_news_comments`;
2CREATE TABLE `site_news_comments` (
3 `id` int(11) NOT NULL AUTO_INCREMENT,
4 `article` int(11) NOT NULL,
5 `userid` int(11) NOT NULL,
6 `comment` varchar(500) NOT NULL,
7 `posted_on` varchar(150) NOT NULL DEFAULT '',
8 PRIMARY KEY (`id`)
9) ENGINE=MyISAM AUTO_INCREMENT=719 DEFAULT CHARSET=latin1;
10
11-- ----------------------------
12-- Records of site_news_comments
13-- ----------------------------