Где сдесь ошибка ПОМОГИТЕ
-- --------------------------------------------------------
--
-- Table structure for table `clubs_stena`
--
CREATE TABLE IF NOT EXISTS `clubs_stena` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`idgrupa` int(11) NOT NULL,
`time` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`name` varchar(25) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`id`),
KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;