CREATE TABLE IF NOT EXISTS `favorites` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`id_user` int(11) NOT NULL,
`url` text NOT NULL,
`time` int(11) NOT NULL,
`name` text NOT NULL,
PRIMARY KEY (`id`),
KEY `id_user` (`id_user`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;