--
-- Структура таблицы `frends_new`
--
DROP TABLE IF
EXISTS `frends_new`;
CREATE TABLE IF NOT EXISTS `frends_new` (
`id`
int(11) NOT NULL auto_increment,
`user` int(11) NOT NULL default '0',
`to` int(11) NOT NULL default '0',
`time` int(11) NOT NULL,
PRIMARY KEY
(`id`),
KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_unicode_ci;
--
-- Дамп данных таблицы
`frends_new`
--