Запросов: 8 1. -- -- ��������� ������� `cms_contact` -- DROP TABLE IF EXISTS
`cms_contact` Запрос выполнен! 2. CREATE TABLE IF NOT EXISTS `cms_contact` ( `id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL, `from_id` int(11) NOT
NULL, `time` int(11) NOT NULL, `type` tinyint(1)
NOT NULL DEFAULT '1', `friends` tinyint(1) NOT
NULL, `ban` tinyint(1) unsigned NOT NULL
DEFAULT '0', `man` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY
`id_user` (`user_id`,`from_id`), KEY `time`
(`time`), KEY `ban` (`ban`) ) Запрос выполнен! 3. -- -- ��������� ������� `cms_mail` -- DROP TABLE IF EXISTS `cms_mail` Запрос выполнен! 4. CREATE TABLE IF NOT EXISTS `cms_mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL, `from_id` int
(10) unsigned NOT NULL, `text` text NOT NULL,
`time` int(10) unsigned NOT NULL, `read` tinyint
(1) unsigned NOT NULL DEFAULT '0', `sys` tinyint
(1) unsigned NOT NULL DEFAULT '0', `delete` int (10) unsigned NOT NULL DEFAULT '0', `file_name`
varchar(100) NOT NULL, `count` int(10) NOT NULL
DEFAULT '0', `size` int(10) NOT NULL DEFAULT '0',
`them` varchar(100) NOT NULL, `spam` tinyint(1)
unsigned NOT NULL DEFAULT '0', PRIMARY KEY
(`id`), KEY `user_id` (`user_id`), KEY `from_id` (`from_id`), KEY `time` (`time`), KEY `read`
(`read`), KEY `sys` (`sys`), KEY `delete`
(`delete`) ) Запрос выполнен! 5. -- -- ��������� ������� `cms_settings` -- INSERT INTO `cms_settings`
(`key` ,`val` ) VALUES ('them_message', '') Запрос выполнен! 6. INSERT INTO `cms_settings` (`key` ,`val` ) VALUES ('reg_message', '') Запрос не выполнен! 7. INSERT INTO `cms_settings` (`key` ,`val` ) VALUES ('message_include', '1') Запрос не выполнен! 8. -- -- ��������� ������� `users` -- ALTER TABLE `users` ADD `set_mail` TINYTEXT
NOT NULL AFTER `set_forum` Запрос выполнен!