File size: 587B
CREATE TABLE IF NOT EXISTS `PROGRESS` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`USER_ID` int(11) DEFAULT NULL,
`NEWS_COMMENTS` int(11) DEFAULT '0',
`NEWS_COMMENTS_OK` int(11) DEFAULT '0',
`BLOGS` int(11) DEFAULT '0',
`BLOGS_OK` int(11) DEFAULT '0',
`BLOGS_COMMENTS` int(11) DEFAULT '0',
`BLOGS_COMMENTS_OK` int(11) DEFAULT '0',
`GUESTBOOK` int(11) DEFAULT '0',
`GUESTBOOK_OK` int(11) DEFAULT '0',
`AVATAR_OK` int(11) DEFAULT '0',
`STATUS_OK` int(11) DEFAULT '0',
`EMAIL_OK` int(11) DEFAULT '0',
PRIMARY KEY (`ID`))
ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;