CREATE TABLE IF NOT EXISTS `rek` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`url` text NOT NULL,
`days` text NOT NULL,
`data` text NOT NULL,
`num` text NOT NULL,
`ok`
text NOT NULL,
`color` text NOT NULL,
`sum` text NOT NULL,
PRIMARY
KEY (`id`),
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
AUTO_INCREMENT=11 ;