vote_data.sql 429 B

12345678910111213
  1. DROP TABLE IF EXISTS `phpcms_vote_data`;
  2. CREATE TABLE `phpcms_vote_data` (
  3. `userid` mediumint(8) unsigned DEFAULT '0',
  4. `username` char(20) NOT NULL,
  5. `subjectid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  6. `time` int(10) unsigned NOT NULL DEFAULT '0',
  7. `ip` char(15) NOT NULL,
  8. `data` text NOT NULL,
  9. `userinfo` text NOT NULL,
  10. KEY `subjectid` (`subjectid`),
  11. KEY `userid` (`userid`),
  12. KEY `ip` (`ip`)
  13. ) TYPE=MyISAM;