######################################
CREATE TABLE `rate` (
`id` int(11) NOT NULL auto_increment,
`pass` text NOT NULL,
`title` text NOT NULL,
`link` text NOT NULL,
`about` text NOT NULL,
`date` date NOT NULL default '0000-00-00',
`time` text NOT NULL,
`today` int(11) default NULL,
`allday` int(11) default NULL,
`host` longtext,
`counthost` int(11) default '0',
`countdays` int(11) default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
######################################