CREATE TABLE `top` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`url` text,
`detals` longtext,
`date` datetime DEFAULT NULL,
`disable` int(11) DEFAULT NULL,
`obt` int(11) DEFAULT NULL,
`eng` int(11) DEFAULT NULL,
`can_vote` int(11) DEFAULT NULL,
`vote` int(11) DEFAULT NULL,
`out` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
CREATE TABLE `top_info` (
`id` int(11) NOT NULL,
`rates1` int(11) DEFAULT NULL,
`chronicle1` text,
`rates2` int(11) DEFAULT NULL,
`chronicle2` text,
`rates3` int(11) DEFAULT NULL,
`chronicle3` text,
`rates4` int(11) DEFAULT NULL,
`chronicle4` text,
`rates5` int(11) DEFAULT NULL,
`chronicle5` text,
`date1` date DEFAULT NULL,
`date2` date DEFAULT NULL,
`date3` date DEFAULT NULL,
`date4` date DEFAULT NULL,
`date5` date DEFAULT NULL,
`vote1` int(11) DEFAULT NULL,
`vote2` int(11) DEFAULT NULL,
`vote3` int(11) DEFAULT NULL,
`vote4` int(11) DEFAULT NULL,
`vote5` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;