monnic,
Выполните запрос:
CREATE TABLE IF NOT EXISTS `information_systems_dir_table` (
`information_systems_dir_id` int(11) NOT NULL auto_increment,
`information_systems_dir_parent_id` int(11) NOT NULL default '0',
`information_systems_dir_name` text,
`information_systems_dir_description` text,
`site_id` int(11) NOT NULL default '0',
`users_id` int(11) NOT NULL default '0',
PRIMARY KEY (`information_systems_dir_id`),
KEY `information_systems_dir_parent_id` (`information_systems_dir_parent_id`)
) ENGINE=MyISAM;
ALTER TABLE `shop_groups_table` CHANGE `shop_groups_seo_title` `shop_groups_seo_title` TEXT DEFAULT NULL ;
ALTER TABLE `shop_groups_table` CHANGE `shop_groups_seo_description` `shop_groups_seo_description` TEXT DEFAULT NULL ;
ALTER TABLE `shop_groups_table` CHANGE `shop_groups_seo_keywords` `shop_groups_seo_keywords` TEXT DEFAULT NULL ;
CREATE TABLE IF NOT EXISTS `shop_dir_table` (
`shop_dir_id` int(11) NOT NULL auto_increment,
`shop_dir_parent_id` int(11) NOT NULL default '0',
`shop_dir_name` text,
`shop_dir_description` text,
`site_id` int(11) NOT NULL default '0',
`users_id` int(11) NOT NULL default '0',
PRIMARY KEY (`shop_dir_id`),
KEY `shop_dir_parent_id` (`shop_dir_parent_id`),
KEY `site_id` (`site_id`)
) ENGINE=MyISAM;
ALTER TABLE `shop_items_catalog_table` CHANGE `shop_items_catalog_seo_title` `shop_items_catalog_seo_title` TEXT DEFAULT NULL ;
ALTER TABLE `shop_items_catalog_table` CHANGE `shop_items_catalog_seo_keywords` `shop_items_catalog_seo_keywords` TEXT DEFAULT NULL ;
Какая редакция системы? Если Бизнес или Корпорация, то нужно будет еще запрос выполнить.