CREATE TABLE IF NOT EXISTS `frends` (
`user` int(11) NOT NULL DEFAULT
'0',
`frend` int(11) NOT NULL DEFAULT '0',
`time` int(11) NOT NULL,
`i` int(1) DEFAULT '0',
PRIMARY KEY (`user`,`frend`),
KEY `time`
(`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;