Файл: sys/db_tables/frends.sql
Строк: 21
-- --------------------------------------------------------
--
--
Структура таблицы `frends`
--
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;
--
--------------------------------------------------------
--
--
Структура таблицы `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;