--
-- Table structure for table `hints`
--
CREATE TABLE `hints` (
`ID` mediumint(9) NOT NULL auto_increment,
`ID_PAGINA` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `rating`
--
CREATE TABLE `rating` (
`ID` int(11) NOT NULL auto_increment,
`ID_PAGINA` int(11) default NULL,
`URL` varchar(200) default NULL,
`RATE` float default NULL,
`COUNT` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|