CREATE TABLE IF NOT EXISTS `friendssite` (
`id` int(11) NOT NULL
auto_increment,
`site` text NOT NULL,
`name` text NOT NULL,
`opis`
text NOT NULL,
`iduser` int(11) NOT NULL,
`count` int(11) NOT NULL,
`type` int(2) NOT NULL,
`vr` int(11) NOT NULL,
PRIMARY KEY
(`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1
;