Файл: upload-2031-rs1/install/opencart.sql
Строк: 4697
-- --------------------------------------------------------
--
--
Database: `opencart-russia.ru`
--
--
--------------------------------------------------------
SET sql_mode =
'';
--
-- Table structure for table `oc_address`
--
CREATE TABLE IF NOT
EXISTS `oc_address` (
`address_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`company` varchar(40) NOT NULL,
`address_1` varchar(128) NOT NULL,
`address_2` varchar(128) NOT NULL,
`city` varchar(128) NOT NULL,
`postcode` varchar(10) NOT NULL,
`country_id` int(11) NOT NULL DEFAULT '0',
`zone_id` int(11) NOT NULL
DEFAULT '0',
`custom_field` text NOT NULL,
PRIMARY KEY (`address_id`),
KEY `customer_id` (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate`
--
CREATE TABLE IF NOT EXISTS
`oc_affiliate` (
`affiliate_id` int(11) NOT NULL AUTO_INCREMENT,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax`
varchar(32) NOT NULL,
`password` varchar(40) NOT NULL,
`salt`
varchar(9) NOT NULL,
`company` varchar(40) NOT NULL,
`website`
varchar(255) NOT NULL,
`address_1` varchar(128) NOT NULL,
`address_2`
varchar(128) NOT NULL,
`city` varchar(128) NOT NULL,
`postcode`
varchar(10) NOT NULL,
`country_id` int(11) NOT NULL,
`zone_id` int(11)
NOT NULL,
`code` varchar(64) NOT NULL,
`commission` decimal(4,2) NOT
NULL DEFAULT '0.00',
`tax` varchar(64) NOT NULL,
`payment` varchar(6)
NOT NULL,
`cheque` varchar(100) NOT NULL,
`paypal` varchar(64) NOT
NULL,
`bank_name` varchar(64) NOT NULL,
`bank_branch_number`
varchar(64) NOT NULL,
`bank_swift_code` varchar(64) NOT NULL,
`bank_account_name` varchar(64) NOT NULL,
`bank_account_number`
varchar(64) NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1)
NOT NULL,
`approved` tinyint(1) NOT NULL,
`date_added` datetime NOT
NULL,
PRIMARY KEY (`affiliate_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_activity`
--
CREATE TABLE IF NOT EXISTS
`oc_affiliate_activity` (
`activity_id` int(11) NOT NULL AUTO_INCREMENT,
`affiliate_id` int(11) NOT NULL,
`key` varchar(64) NOT NULL,
`data`
text NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT
NULL,
PRIMARY KEY (`activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_login`
--
CREATE TABLE IF NOT EXISTS
`oc_affiliate_login` (
`affiliate_login_id` int(11) NOT NULL
AUTO_INCREMENT,
`email` varchar(96) NOT NULL,
`ip` varchar(40) NOT NULL,
`total` int(4) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`affiliate_login_id`),
KEY `email`
(`email`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_affiliate_transaction`
--
CREATE TABLE IF NOT
EXISTS `oc_affiliate_transaction` (
`affiliate_transaction_id` int(11)
NOT NULL AUTO_INCREMENT,
`affiliate_id` int(11) NOT NULL,
`order_id`
int(11) NOT NULL,
`description` text NOT NULL,
`amount` decimal(15,4)
NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`affiliate_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_api`
--
CREATE TABLE IF NOT EXISTS `oc_api` (
`api_id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(64) NOT
NULL,
`firstname` varchar(64) NOT NULL,
`lastname` varchar(64) NOT
NULL,
`password` text NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`api_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Table structure for table
`oc_attribute`
--
CREATE TABLE IF NOT EXISTS `oc_attribute` (
`attribute_id` int(11) NOT NULL AUTO_INCREMENT,
`attribute_group_id`
int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`attribute_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_attribute`
--
INSERT INTO `oc_attribute` (`attribute_id`,
`attribute_group_id`, `sort_order`) VALUES
(1, 6, 1),
(2, 6, 5),
(3, 6,
3),
(4, 3, 1),
(5, 3, 2),
(6, 3, 3),
(7, 3, 4),
(8, 3, 5),
(9, 3, 6),
(10,
3, 7),
(11, 3, 8);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_attribute_description`
--
CREATE TABLE IF NOT
EXISTS `oc_attribute_description` (
`attribute_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY
KEY (`attribute_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_attribute_description`
--
INSERT INTO `oc_attribute_description`
(`attribute_id`, `language_id`, `name`) VALUES
(1, 1, 'Description'),
(2,
1, 'No. of Cores'),
(4, 1, 'test 1'),
(5, 1, 'test 2'),
(6, 1, 'test
3'),
(7, 1, 'test 4'),
(8, 1, 'test 5'),
(9, 1, 'test 6'),
(10, 1, 'test
7'),
(11, 1, 'test 8'),
(3, 1, 'Clockspeed');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_attribute_group`
--
CREATE TABLE IF NOT EXISTS
`oc_attribute_group` (
`attribute_group_id` int(11) NOT NULL
AUTO_INCREMENT,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`attribute_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_attribute_group`
--
INSERT INTO `oc_attribute_group`
(`attribute_group_id`, `sort_order`) VALUES
(3, 2),
(4, 1),
(5, 3),
(6,
4);
-- --------------------------------------------------------
--
--
Table structure for table `oc_attribute_group_description`
--
CREATE TABLE
IF NOT EXISTS `oc_attribute_group_description` (
`attribute_group_id`
int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64)
NOT NULL,
PRIMARY KEY (`attribute_group_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_attribute_group_description`
--
INSERT INTO
`oc_attribute_group_description` (`attribute_group_id`, `language_id`,
`name`) VALUES
(3, 1, 'Memory'),
(4, 1, 'Technical'),
(5, 1,
'Motherboard'),
(6, 1, 'Processor');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner`
--
CREATE TABLE IF NOT EXISTS `oc_banner`
(
`banner_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT
NULL,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`banner_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_banner`
--
INSERT INTO `oc_banner` (`banner_id`,
`name`, `status`) VALUES
(6, 'HP Products', 1),
(7, 'Home Page Slideshow',
1),
(8, 'Manufacturers', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner_image`
--
CREATE TABLE IF NOT EXISTS
`oc_banner_image` (
`banner_image_id` int(11) NOT NULL AUTO_INCREMENT,
`banner_id` int(11) NOT NULL,
`link` varchar(255) NOT NULL,
`image`
varchar(255) NOT NULL,
`sort_order` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`banner_image_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_banner_image`
--
INSERT INTO `oc_banner_image` (`banner_image_id`,
`banner_id`, `link`, `image`, `sort_order`) VALUES
(79, 7,
'index.php?route=product/product&path=57&product_id=49',
'catalog/demo/banners/iPhone6.jpg', 0),
(87, 6,
'index.php?route=product/manufacturer/info&manufacturer_id=7',
'catalog/demo/compaq_presario.jpg', 0),
(94, 8, '',
'catalog/demo/manufacturer/nfl.png', 0),
(95, 8, '',
'catalog/demo/manufacturer/redbull.png', 0),
(96, 8, '',
'catalog/demo/manufacturer/sony.png', 0),
(91, 8, '',
'catalog/demo/manufacturer/cocacola.png', 0),
(92, 8, '',
'catalog/demo/manufacturer/burgerking.png', 0),
(93, 8, '',
'catalog/demo/manufacturer/canon.png', 0),
(88, 8, '',
'catalog/demo/manufacturer/harley.png', 0),
(89, 8, '',
'catalog/demo/manufacturer/dell.png', 0),
(90, 8, '',
'catalog/demo/manufacturer/disney.png', 0),
(80, 7, '',
'catalog/demo/banners/MacBookAir.jpg', 0),
(97, 8, '',
'catalog/demo/manufacturer/starbucks.png', 0),
(98, 8, '',
'catalog/demo/manufacturer/nintendo.png', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_banner_image_description`
--
CREATE TABLE IF NOT
EXISTS `oc_banner_image_description` (
`banner_image_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`banner_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
PRIMARY KEY
(`banner_image_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_banner_image_description`
--
INSERT INTO `oc_banner_image_description`
(`banner_image_id`, `language_id`, `banner_id`, `title`) VALUES
(79, 1, 7,
'iPhone 6'),
(87, 1, 6, 'HP Banner'),
(93, 1, 8, 'Canon'),
(92, 1, 8,
'Burger King'),
(91, 1, 8, 'Coca Cola'),
(90, 1, 8, 'Disney'),
(89, 1, 8,
'Dell'),
(80, 1, 7, 'MacBookAir'),
(88, 1, 8, 'Harley Davidson'),
(94, 1,
8, 'NFL'),
(95, 1, 8, 'RedBull'),
(96, 1, 8, 'Sony'),
(97, 1, 8,
'Starbucks'),
(98, 1, 8, 'Nintendo');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category`
--
CREATE TABLE IF NOT EXISTS
`oc_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`image`
varchar(255) DEFAULT NULL,
`parent_id` int(11) NOT NULL DEFAULT '0',
`top` tinyint(1) NOT NULL,
`column` int(3) NOT NULL,
`sort_order`
int(3) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL,
`date_added`
datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY
(`category_id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category`
--
INSERT INTO `oc_category` (`category_id`, `image`,
`parent_id`, `top`, `column`, `sort_order`, `status`, `date_added`,
`date_modified`) VALUES
(25, '', 0, 1, 1, 3, 1, '2009-01-31 01:04:25',
'2011-05-30 12:14:55'),
(27, '', 20, 0, 0, 2, 1, '2009-01-31 01:55:34',
'2010-08-22 06:32:15'),
(20, 'catalog/demo/compaq_presario.jpg', 0, 1, 1,
1, 1, '2009-01-05 21:49:43', '2011-07-16 02:14:42'),
(24, '', 0, 1, 1, 5,
1, '2009-01-20 02:36:26', '2011-05-30 12:15:18'),
(18,
'catalog/demo/hp_2.jpg', 0, 1, 0, 2, 1, '2009-01-05 21:49:15', '2011-05-30
12:13:55'),
(17, '', 0, 1, 1, 4, 1, '2009-01-03 21:08:57', '2011-05-30
12:15:11'),
(28, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:12', '2010-08-22
06:32:46'),
(26, '', 20, 0, 0, 1, 1, '2009-01-31 01:55:14', '2010-08-22
06:31:45'),
(29, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:37', '2010-08-22
06:32:39'),
(30, '', 25, 0, 0, 1, 1, '2009-02-02 13:11:59', '2010-08-22
06:33:00'),
(31, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:24', '2010-08-22
06:33:06'),
(32, '', 25, 0, 0, 1, 1, '2009-02-03 14:17:34', '2010-08-22
06:33:12'),
(33, '', 0, 1, 1, 6, 1, '2009-02-03 14:17:55', '2011-05-30
12:15:25'),
(34, 'catalog/demo/ipod_touch_4.jpg', 0, 1, 4, 7, 1,
'2009-02-03 14:18:11', '2011-05-30 12:15:31'),
(35, '', 28, 0, 0, 0, 1,
'2010-09-17 10:06:48', '2010-09-18 14:02:42'),
(36, '', 28, 0, 0, 0, 1,
'2010-09-17 10:07:13', '2010-09-18 14:02:55'),
(37, '', 34, 0, 0, 0, 1,
'2010-09-18 14:03:39', '2011-04-22 01:55:08'),
(38, '', 34, 0, 0, 0, 1,
'2010-09-18 14:03:51', '2010-09-18 14:03:51'),
(39, '', 34, 0, 0, 0, 1,
'2010-09-18 14:04:17', '2011-04-22 01:55:20'),
(40, '', 34, 0, 0, 0, 1,
'2010-09-18 14:05:36', '2010-09-18 14:05:36'),
(41, '', 34, 0, 0, 0, 1,
'2010-09-18 14:05:49', '2011-04-22 01:55:30'),
(42, '', 34, 0, 0, 0, 1,
'2010-09-18 14:06:34', '2010-11-07 20:31:04'),
(43, '', 34, 0, 0, 0, 1,
'2010-09-18 14:06:49', '2011-04-22 01:55:40'),
(44, '', 34, 0, 0, 0, 1,
'2010-09-21 15:39:21', '2010-11-07 20:30:55'),
(45, '', 18, 0, 0, 0, 1,
'2010-09-24 18:29:16', '2011-04-26 08:52:11'),
(46, '', 18, 0, 0, 0, 1,
'2010-09-24 18:29:31', '2011-04-26 08:52:23'),
(47, '', 34, 0, 0, 0, 1,
'2010-11-07 11:13:16', '2010-11-07 11:13:16'),
(48, '', 34, 0, 0, 0, 1,
'2010-11-07 11:13:33', '2010-11-07 11:13:33'),
(49, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:04', '2010-11-07 11:14:04'),
(50, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:23', '2011-04-22 01:16:01'),
(51, '', 34, 0, 0, 0, 1,
'2010-11-07 11:14:38', '2011-04-22 01:16:13'),
(52, '', 34, 0, 0, 0, 1,
'2010-11-07 11:16:09', '2011-04-22 01:54:57'),
(53, '', 34, 0, 0, 0, 1,
'2010-11-07 11:28:53', '2011-04-22 01:14:36'),
(54, '', 34, 0, 0, 0, 1,
'2010-11-07 11:29:16', '2011-04-22 01:16:50'),
(55, '', 34, 0, 0, 0, 1,
'2010-11-08 10:31:32', '2010-11-08 10:31:32'),
(56, '', 34, 0, 0, 0, 1,
'2010-11-08 10:31:50', '2011-04-22 01:16:37'),
(57, '', 0, 1, 1, 3, 1,
'2011-04-26 08:53:16', '2011-05-30 12:15:05'),
(58, '', 52, 0, 0, 0, 1,
'2011-05-08 13:44:16', '2011-05-08 13:44:16');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_description`
--
CREATE TABLE IF NOT
EXISTS `oc_category_description` (
`category_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT
NULL,
PRIMARY KEY (`category_id`,`language_id`),
KEY `name` (`name`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_category_description`
--
INSERT INTO
`oc_category_description` (`category_id`, `language_id`, `name`,
`description`, `meta_title`, `meta_description`, `meta_keyword`)
VALUES
(27, 1, 'Mac', '', '', '', ''),
(26, 1, 'PC', '', '', '', ''),
(35,
1, 'test 1', '', '', '', ''),
(36, 1, 'test 2', '', '', '', ''),
(37, 1,
'test 5', '', '', '', ''),
(38, 1, 'test 4', '', '', '', ''),
(39, 1, 'test
6', '', '', '', ''),
(40, 1, 'test 7', '', '', '', ''),
(41, 1, 'test 8',
'', '', '', ''),
(42, 1, 'test 9', '', '', '', ''),
(43, 1, 'test 11', '',
'', '', ''),
(44, 1, 'test 12', '', '', '', ''),
(45, 1, 'Windows', '', '',
'', ''),
(46, 1, 'Macs', '', '', '', ''),
(47, 1, 'test 15', '', '', '',
''),
(48, 1, 'test 16', '', '', '', ''),
(49, 1, 'test 17', '', '', '',
''),
(50, 1, 'test 18', '', '', '', ''),
(51, 1, 'test 19', '', '', '',
''),
(52, 1, 'test 20', '', '', '', ''),
(53, 1, 'test 21', '', '', '',
''),
(54, 1, 'test 22', '', '', '', ''),
(55, 1, 'test 23', '', '', '',
''),
(56, 1, 'test 24', '', '', '', ''),
(58, 1, 'test 25', '', '', '',
''),
(28, 1, 'Мониторы',
'<p><br></p>',
'Мониторы', '', ''),
(33, 1, 'Камеры',
'<p><br></p>', 'Камеры',
'', ''),
(32, 1, 'Веб камеры',
'<p><br></p>', 'Веб
камеры', '', ''),
(31, 1, 'Сканеры',
'<p><br></p>', 'Сканеры',
'', ''),
(30, 1, 'Принтеры',
'<p><br></p>',
'Принтеры', '', ''),
(29, 1, 'Манипуляторы мышь',
'<p><br></p>',
'Манипуляторы мышь', '', ''),
(27, 2, 'Mac', '', '', '',
''),
(26, 2, 'PC', '', '', '', ''),
(17, 1, 'Софт',
'<p><br></p>', 'Софт', '',
''),
(25, 1, 'Комплектующие',
'<p><br></p>',
'Комплектующие', '', ''),
(24, 1, 'Телефоны и PDA',
'<p><br></p>', 'Телефоны
и PDA', '', ''),
(20, 1, 'Компьютеры',
'<p>\r\n Example of category description
text</p>', 'Компьютеры', 'Example of category
description', ''),
(35, 2, 'test 1', '', '', '', ''),
(36, 2, 'test 2', '',
'', '', ''),
(37, 2, 'test 5', '', '', '', ''),
(38, 2, 'test 4', '', '',
'', ''),
(39, 2, 'test 6', '', '', '', ''),
(40, 2, 'test 7', '', '', '',
''),
(41, 2, 'test 8', '', '', '', ''),
(42, 2, 'test 9', '', '', '',
''),
(43, 2, 'test 11', '', '', '', ''),
(34, 1, 'MP3 плееры',
'<p>\r\n Shop Laptop feature only the best laptop deals on
the market. By comparing laptop deals from the likes of PC World, Comet,
Dixons, The Link and Carphone Warehouse, Shop Laptop has the most
comprehensive selection of laptops on the internet. At Shop Laptop, we
pride ourselves on offering customers the very best laptop deals. From
refurbished laptops to netbooks, Shop Laptop ensures that every laptop - in
every colour, style, size and technical spec - is featured on the site at
the lowest possible price.</p>', 'MP3 плееры', '',
''),
(18, 1, 'Ноутбуки', '<p>\r\n Shop Laptop feature
only the best laptop deals on the market. By comparing laptop deals from
the likes of PC World, Comet, Dixons, The Link and Carphone Warehouse, Shop
Laptop has the most comprehensive selection of laptops on the internet. At
Shop Laptop, we pride ourselves on offering customers the very best laptop
deals. From refurbished laptops to netbooks, Shop Laptop ensures that every
laptop - in every colour, style, size and technical spec - is featured on
the site at the lowest possible price.</p>',
'Ноутбуки', '', ''),
(44, 2, 'test 12', '', '', '', ''),
(45, 2,
'Windows', '', '', '', ''),
(46, 2, 'Macs', '', '', '', ''),
(47, 2, 'test
15', '', '', '', ''),
(48, 2, 'test 16', '', '', '', ''),
(49, 2, 'test
17', '', '', '', ''),
(50, 2, 'test 18', '', '', '', ''),
(51, 2, 'test
19', '', '', '', ''),
(52, 2, 'test 20', '', '', '', ''),
(53, 2, 'test
21', '', '', '', ''),
(54, 2, 'test 22', '', '', '', ''),
(55, 2, 'test
23', '', '', '', ''),
(56, 2, 'test 24', '', '', '', ''),
(57, 1,
'Планшеты',
'<p><br></p>',
'Планшеты', '', ''),
(58, 2, 'test 25', '', '', '', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_filter`
--
CREATE TABLE IF NOT EXISTS
`oc_category_filter` (
`category_id` int(11) NOT NULL,
`filter_id`
int(11) NOT NULL,
PRIMARY KEY (`category_id`,`filter_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_path`
--
CREATE TABLE IF NOT EXISTS
`oc_category_path` (
`category_id` int(11) NOT NULL,
`path_id` int(11)
NOT NULL,
`level` int(11) NOT NULL,
PRIMARY KEY
(`category_id`,`path_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category_path`
--
INSERT INTO `oc_category_path` (`category_id`,
`path_id`, `level`) VALUES
(25, 25, 0),
(28, 25, 0),
(28, 28, 1),
(35, 25,
0),
(35, 28, 1),
(35, 35, 2),
(36, 25, 0),
(36, 28, 1),
(36, 36, 2),
(29,
25, 0),
(29, 29, 1),
(30, 25, 0),
(30, 30, 1),
(31, 25, 0),
(31, 31,
1),
(32, 25, 0),
(32, 32, 1),
(20, 20, 0),
(27, 20, 0),
(27, 27, 1),
(26,
20, 0),
(26, 26, 1),
(24, 24, 0),
(18, 18, 0),
(45, 18, 0),
(45, 45,
1),
(46, 18, 0),
(46, 46, 1),
(17, 17, 0),
(33, 33, 0),
(34, 34, 0),
(37,
34, 0),
(37, 37, 1),
(38, 34, 0),
(38, 38, 1),
(39, 34, 0),
(39, 39,
1),
(40, 34, 0),
(40, 40, 1),
(41, 34, 0),
(41, 41, 1),
(42, 34, 0),
(42,
42, 1),
(43, 34, 0),
(43, 43, 1),
(44, 34, 0),
(44, 44, 1),
(47, 34,
0),
(47, 47, 1),
(48, 34, 0),
(48, 48, 1),
(49, 34, 0),
(49, 49, 1),
(50,
34, 0),
(50, 50, 1),
(51, 34, 0),
(51, 51, 1),
(52, 34, 0),
(52, 52,
1),
(58, 34, 0),
(58, 52, 1),
(58, 58, 2),
(53, 34, 0),
(53, 53, 1),
(54,
34, 0),
(54, 54, 1),
(55, 34, 0),
(55, 55, 1),
(56, 34, 0),
(56, 56,
1),
(57, 57, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_to_layout`
--
CREATE TABLE IF NOT EXISTS
`oc_category_to_layout` (
`category_id` int(11) NOT NULL,
`store_id`
int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY
(`category_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_category_to_store`
--
CREATE TABLE IF NOT EXISTS
`oc_category_to_store` (
`category_id` int(11) NOT NULL,
`store_id`
int(11) NOT NULL,
PRIMARY KEY (`category_id`,`store_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_category_to_store`
--
INSERT INTO `oc_category_to_store`
(`category_id`, `store_id`) VALUES
(17, 0),
(18, 0),
(20, 0),
(24, 0),
(25,
0),
(26, 0),
(27, 0),
(28, 0),
(29, 0),
(30, 0),
(31, 0),
(32, 0),
(33,
0),
(34, 0),
(35, 0),
(36, 0),
(37, 0),
(38, 0),
(39, 0),
(40, 0),
(41,
0),
(42, 0),
(43, 0),
(44, 0),
(45, 0),
(46, 0),
(47, 0),
(48, 0),
(49,
0),
(50, 0),
(51, 0),
(52, 0),
(53, 0),
(54, 0),
(55, 0),
(56, 0),
(57,
0),
(58, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_country`
--
CREATE TABLE IF NOT EXISTS
`oc_country` (
`country_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(128) NOT NULL,
`iso_code_2` varchar(2) NOT NULL,
`iso_code_3`
varchar(3) NOT NULL,
`address_format` text NOT NULL,
`postcode_required` tinyint(1) NOT NULL,
`status` tinyint(1) NOT NULL
DEFAULT '1',
PRIMARY KEY (`country_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_country`
--
INSERT INTO `oc_country` (`country_id`, `name`,
`iso_code_2`, `iso_code_3`, `address_format`, `postcode_required`,
`status`) VALUES
(20, 'Белоруссия (Беларусь)', 'BY',
'BLR', '', 0, 1),
(80, 'Грузия', 'GE', 'GEO', '', 0, 1),
(109,
'Казахстан', 'KZ', 'KAZ', '', 0, 1),
(115, 'Киргизия
(Кыргызстан)', 'KG', 'KGZ', '', 0, 1),
(176,
'Российская Федерация', 'RU', 'RUS', '', 0, 1),
(220,
'Украина', 'UA', 'UKR', '', 0, 1),
(226, 'Узбекистан',
'UZ', 'UZB', '', 0, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon`
--
CREATE TABLE IF NOT EXISTS `oc_coupon`
(
`coupon_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT
NULL,
`code` varchar(10) NOT NULL,
`type` char(1) NOT NULL,
`discount` decimal(15,4) NOT NULL,
`logged` tinyint(1) NOT NULL,
`shipping` tinyint(1) NOT NULL,
`total` decimal(15,4) NOT NULL,
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end` date NOT NULL
DEFAULT '0000-00-00',
`uses_total` int(11) NOT NULL,
`uses_customer`
varchar(11) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`coupon_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_coupon`
--
INSERT INTO `oc_coupon` (`coupon_id`, `name`, `code`,
`type`, `discount`, `logged`, `shipping`, `total`, `date_start`,
`date_end`, `uses_total`, `uses_customer`, `status`, `date_added`)
VALUES
(4, '-10% Discount', '2222', 'P', '10.0000', 0, 0, '0.0000',
'2014-01-01', '2020-01-01', 10, '10', 0, '2009-01-27 13:55:03'),
(5, 'Free
Shipping', '3333', 'P', '0.0000', 0, 1, '100.0000', '2014-01-01',
'2014-02-01', 10, '10', 0, '2009-03-14 21:13:53'),
(6, '-10.00 Discount',
'1111', 'F', '10.0000', 0, 0, '10.0000', '2014-01-01', '2020-01-01',
100000, '10000', 0, '2009-03-14 21:15:18');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_category`
--
CREATE TABLE IF NOT EXISTS
`oc_coupon_category` (
`coupon_id` int(11) NOT NULL,
`category_id`
int(11) NOT NULL,
PRIMARY KEY (`coupon_id`,`category_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_history`
--
CREATE TABLE IF NOT EXISTS
`oc_coupon_history` (
`coupon_history_id` int(11) NOT NULL
AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL,
`order_id` int(11) NOT
NULL,
`customer_id` int(11) NOT NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`coupon_history_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_coupon_product`
--
CREATE TABLE IF NOT EXISTS
`oc_coupon_product` (
`coupon_product_id` int(11) NOT NULL
AUTO_INCREMENT,
`coupon_id` int(11) NOT NULL,
`product_id` int(11) NOT
NULL,
PRIMARY KEY (`coupon_product_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_currency`
--
CREATE TABLE IF NOT EXISTS
`oc_currency` (
`currency_id` int(11) NOT NULL AUTO_INCREMENT,
`title`
varchar(32) NOT NULL,
`code` varchar(3) NOT NULL,
`symbol_left`
varchar(12) NOT NULL,
`symbol_right` varchar(12) NOT NULL,
`decimal_place` char(1) NOT NULL,
`value` float(15,8) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`currency_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_currency`
--
INSERT INTO `oc_currency` (`currency_id`, `title`,
`code`, `symbol_left`, `symbol_right`, `decimal_place`, `value`, `status`,
`date_modified`) VALUES
(1, 'Рубль', 'RUB', '', 'р.', '0',
1.00000000, 1, '2014-09-09 12:27:55');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer`
--
CREATE TABLE IF NOT EXISTS
`oc_customer` (
`customer_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_group_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL DEFAULT
'0',
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT
NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax` varchar(32) NOT NULL,
`password` varchar(40) NOT NULL,
`salt`
varchar(9) NOT NULL,
`cart` text,
`wishlist` text,
`newsletter`
tinyint(1) NOT NULL DEFAULT '0',
`address_id` int(11) NOT NULL DEFAULT
'0',
`custom_field` text NOT NULL,
`ip` varchar(40) NOT NULL,
`status` tinyint(1) NOT NULL,
`approved` tinyint(1) NOT NULL,
`safe`
tinyint(1) NOT NULL,
`token` varchar(255) NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_activity`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_activity` (
`activity_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`key` varchar(64) NOT NULL,
`data` text
NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`activity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_ban_ip`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_ban_ip` (
`customer_ban_ip_id` int(11) NOT NULL
AUTO_INCREMENT,
`ip` varchar(40) NOT NULL,
PRIMARY KEY
(`customer_ban_ip_id`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_group`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_group` (
`customer_group_id` int(11) NOT NULL
AUTO_INCREMENT,
`approval` int(1) NOT NULL,
`sort_order` int(3) NOT
NULL,
PRIMARY KEY (`customer_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_customer_group`
--
INSERT INTO `oc_customer_group`
(`customer_group_id`, `approval`, `sort_order`) VALUES
(1, 0, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_group_description`
--
CREATE TABLE IF NOT
EXISTS `oc_customer_group_description` (
`customer_group_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY
(`customer_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_customer_group_description`
--
INSERT INTO
`oc_customer_group_description` (`customer_group_id`, `language_id`,
`name`, `description`) VALUES
(1, 1, 'Default', 'test');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_history`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_history` (
`customer_history_id` int(11) NOT NULL
AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`comment` text NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`customer_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_login`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_login` (
`customer_login_id` int(11) NOT NULL
AUTO_INCREMENT,
`email` varchar(96) NOT NULL,
`ip` varchar(40) NOT NULL,
`total` int(4) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`customer_login_id`),
KEY `email`
(`email`),
KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_ip`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_ip` (
`customer_ip_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`ip` varchar(40) NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`customer_ip_id`),
KEY `ip` (`ip`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_online`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_online` (
`ip` varchar(40) NOT NULL,
`customer_id` int(11)
NOT NULL,
`url` text NOT NULL,
`referer` text NOT NULL,
`date_added`
datetime NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_reward`
--
CREATE TABLE IF NOT EXISTS
`oc_customer_reward` (
`customer_reward_id` int(11) NOT NULL
AUTO_INCREMENT,
`customer_id` int(11) NOT NULL DEFAULT '0',
`order_id`
int(11) NOT NULL DEFAULT '0',
`description` text NOT NULL,
`points`
int(8) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
PRIMARY
KEY (`customer_reward_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_customer_transaction`
--
CREATE TABLE IF NOT
EXISTS `oc_customer_transaction` (
`customer_transaction_id` int(11) NOT
NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`order_id` int(11)
NOT NULL,
`description` text NOT NULL,
`amount` decimal(15,4) NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`customer_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field`
--
CREATE TABLE IF NOT EXISTS
`oc_custom_field` (
`custom_field_id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT NULL,
`value` text NOT NULL,
`location`
varchar(7) NOT NULL,
`status` tinyint(1) NOT NULL,
`sort_order` int(3)
NOT NULL,
PRIMARY KEY (`custom_field_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_customer_group`
--
CREATE TABLE IF
NOT EXISTS `oc_custom_field_customer_group` (
`custom_field_id` int(11)
NOT NULL,
`customer_group_id` int(11) NOT NULL,
`required` tinyint(1)
NOT NULL,
PRIMARY KEY (`custom_field_id`,`customer_group_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_description`
--
CREATE TABLE IF NOT
EXISTS `oc_custom_field_description` (
`custom_field_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`custom_field_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_value`
--
CREATE TABLE IF NOT EXISTS
`oc_custom_field_value` (
`custom_field_value_id` int(11) NOT NULL
AUTO_INCREMENT,
`custom_field_id` int(11) NOT NULL,
`sort_order` int(3)
NOT NULL,
PRIMARY KEY (`custom_field_value_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_custom_field_value_description`
--
CREATE TABLE IF
NOT EXISTS `oc_custom_field_value_description` (
`custom_field_value_id`
int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`custom_field_id`
int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`custom_field_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_download`
--
CREATE TABLE IF NOT EXISTS
`oc_download` (
`download_id` int(11) NOT NULL AUTO_INCREMENT,
`filename` varchar(128) NOT NULL,
`mask` varchar(128) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`download_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_download_description`
--
CREATE TABLE IF NOT
EXISTS `oc_download_description` (
`download_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY
KEY (`download_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_event`
--
CREATE TABLE IF NOT EXISTS `oc_event` (
`event_id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(32) NOT
NULL,
`trigger` text NOT NULL,
`action` text NOT NULL,
PRIMARY KEY
(`event_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_extension`
--
CREATE TABLE IF NOT EXISTS
`oc_extension` (
`extension_id` int(11) NOT NULL AUTO_INCREMENT,
`type`
varchar(32) NOT NULL,
`code` varchar(32) NOT NULL,
PRIMARY KEY
(`extension_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_extension`
--
INSERT INTO `oc_extension` (`extension_id`, `type`,
`code`) VALUES
(23, 'payment', 'cod'),
(22, 'total', 'shipping'),
(57,
'total', 'sub_total'),
(58, 'total', 'tax'),
(59, 'total', 'total'),
(410,
'module', 'banner'),
(426, 'module', 'carousel'),
(390, 'total',
'credit'),
(387, 'shipping', 'flat'),
(349, 'total', 'handling'),
(350,
'total', 'low_order_fee'),
(389, 'total', 'coupon'),
(413, 'module',
'category'),
(408, 'module', 'account'),
(393, 'total', 'reward'),
(398,
'total', 'voucher'),
(407, 'payment', 'free_checkout'),
(427, 'module',
'featured'),
(419, 'module', 'slideshow');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter`
--
CREATE TABLE IF NOT EXISTS `oc_filter`
(
`filter_id` int(11) NOT NULL AUTO_INCREMENT,
`filter_group_id`
int(11) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_description`
--
CREATE TABLE IF NOT EXISTS
`oc_filter_description` (
`filter_id` int(11) NOT NULL,
`language_id`
int(11) NOT NULL,
`filter_group_id` int(11) NOT NULL,
`name`
varchar(64) NOT NULL,
PRIMARY KEY (`filter_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_group`
--
CREATE TABLE IF NOT EXISTS
`oc_filter_group` (
`filter_group_id` int(11) NOT NULL AUTO_INCREMENT,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`filter_group_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_filter_group_description`
--
CREATE TABLE IF NOT
EXISTS `oc_filter_group_description` (
`filter_group_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`filter_group_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_geo_zone`
--
CREATE TABLE IF NOT EXISTS
`oc_geo_zone` (
`geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(32) NOT NULL,
`description` varchar(255) NOT NULL,
`date_modified` datetime NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_geo_zone`
--
INSERT INTO `oc_geo_zone` (`geo_zone_id`, `name`,
`description`, `date_modified`, `date_added`) VALUES
(3, 'Зона НДС',
'Облагаемые НДС', '2014-09-09 11:48:13', '2014-05-21
22:30:20');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information`
--
CREATE TABLE IF NOT EXISTS
`oc_information` (
`information_id` int(11) NOT NULL AUTO_INCREMENT,
`bottom` int(1) NOT NULL DEFAULT '0',
`sort_order` int(3) NOT NULL
DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY
(`information_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_information`
--
INSERT INTO `oc_information` (`information_id`,
`bottom`, `sort_order`, `status`) VALUES
(3, 1, 3, 1),
(4, 1, 1, 1),
(5, 1,
4, 1),
(6, 1, 2, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_description`
--
CREATE TABLE IF NOT
EXISTS `oc_information_description` (
`information_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`title` varchar(64) NOT NULL,
`description` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT
NULL,
PRIMARY KEY (`information_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_information_description`
--
INSERT INTO `oc_information_description`
(`information_id`, `language_id`, `title`, `description`, `meta_title`,
`meta_description`, `meta_keyword`) VALUES
(4, 1, 'О нас',
'<p>\r\n About Us</p>', 'О нас', '',
''),
(5, 1, 'Условия соглашения',
'<p>\r\n Terms &amp; Conditions</p>',
'Условия соглашения', '', ''),
(3, 1, 'Политика
Безопасности', '<p>\r\n Privacy
Policy</p>', 'Политика Безопасности', '',
''),
(6, 1, 'Доставка', '<p>\r\n Delivery
Information</p>', 'Доставка', '', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_to_layout`
--
CREATE TABLE IF NOT
EXISTS `oc_information_to_layout` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY
(`information_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_information_to_store`
--
CREATE TABLE IF NOT
EXISTS `oc_information_to_store` (
`information_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`information_id`,`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_information_to_store`
--
INSERT INTO
`oc_information_to_store` (`information_id`, `store_id`) VALUES
(3, 0),
(4,
0),
(5, 0),
(6, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_language`
--
CREATE TABLE IF NOT EXISTS
`oc_language` (
`language_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(32) NOT NULL,
`code` varchar(5) NOT NULL,
`locale` varchar(255)
NOT NULL,
`image` varchar(64) NOT NULL,
`directory` varchar(32) NOT
NULL,
`sort_order` int(3) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT
NULL,
PRIMARY KEY (`language_id`),
KEY `name` (`name`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_language`
--
INSERT INTO `oc_language` (`language_id`, `name`,
`code`, `locale`, `image`, `directory`, `sort_order`, `status`) VALUES
(1,
'Russian', 'ru', 'ru_RU.UTF-8,ru_RU,russian', 'ru.png', 'russian', 1,
1);
-- --------------------------------------------------------
--
--
Table structure for table `oc_layout`
--
CREATE TABLE IF NOT EXISTS
`oc_layout` (
`layout_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(64) NOT NULL,
PRIMARY KEY (`layout_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout`
--
INSERT INTO `oc_layout` (`layout_id`, `name`) VALUES
(1,
'Home'),
(2, 'Product'),
(3, 'Category'),
(4, 'Default'),
(5,
'Manufacturer'),
(6, 'Account'),
(7, 'Checkout'),
(8, 'Contact'),
(9,
'Sitemap'),
(10, 'Affiliate'),
(11, 'Information'),
(12, 'Compare'),
(13,
'Search');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_layout_module`
--
CREATE TABLE IF NOT EXISTS
`oc_layout_module` (
`layout_module_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`code` varchar(64) NOT NULL,
`position`
varchar(14) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY
(`layout_module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout_module`
--
INSERT INTO `oc_layout_module` (`layout_module_id`,
`layout_id`, `code`, `position`, `sort_order`) VALUES
(2, 4, '0',
'content_top', 0),
(3, 4, '0', 'content_top', 1),
(20, 5, '0',
'column_left', 2),
(69, 10, 'affiliate', 'column_right', 1),
(68, 6,
'account', 'column_right', 1),
(67, 1, 'carousel.29', 'content_top',
3),
(66, 1, 'slideshow.27', 'content_top', 1),
(65, 1, 'featured.28',
'content_top', 2),
(72, 3, 'category', 'column_left', 1),
(73, 3,
'banner.30', 'column_left', 2);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_layout_route`
--
CREATE TABLE IF NOT EXISTS
`oc_layout_route` (
`layout_route_id` int(11) NOT NULL AUTO_INCREMENT,
`layout_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
`route`
varchar(255) NOT NULL,
PRIMARY KEY (`layout_route_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_layout_route`
--
INSERT INTO `oc_layout_route` (`layout_route_id`,
`layout_id`, `store_id`, `route`) VALUES
(38, 6, 0, 'account/%'),
(17, 10,
0, 'affiliate/%'),
(44, 3, 0, 'product/category'),
(42, 1, 0,
'common/home'),
(20, 2, 0, 'product/product'),
(24, 11, 0,
'information/information'),
(23, 7, 0, 'checkout/%'),
(31, 8, 0,
'information/contact'),
(32, 9, 0, 'information/sitemap'),
(34, 4, 0,
''),
(45, 5, 0, 'product/manufacturer'),
(52, 12, 0,
'product/compare'),
(53, 13, 0, 'product/search');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_length_class`
--
CREATE TABLE IF NOT EXISTS
`oc_length_class` (
`length_class_id` int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,8) NOT NULL,
PRIMARY KEY (`length_class_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_length_class`
--
INSERT INTO `oc_length_class`
(`length_class_id`, `value`) VALUES
(1, '1.00000000'),
(2,
'10.00000000'),
(3, '0.39370000');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_length_class_description`
--
CREATE TABLE IF NOT
EXISTS `oc_length_class_description` (
`length_class_id` int(11) NOT NULL
AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`title` varchar(32) NOT
NULL,
`unit` varchar(4) NOT NULL,
PRIMARY KEY
(`length_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_length_class_description`
--
INSERT INTO `oc_length_class_description`
(`length_class_id`, `language_id`, `title`, `unit`) VALUES
(1, 1,
'Сантиметр', 'см'),
(2, 1, 'Миллиметр', 'мм');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_location`
--
CREATE TABLE IF NOT EXISTS
`oc_location` (
`location_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(32) NOT NULL,
`address` text NOT NULL,
`telephone` varchar(32)
NOT NULL,
`fax` varchar(32) NOT NULL,
`geocode` varchar(32) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`open` text NOT NULL,
`comment` text
NOT NULL,
PRIMARY KEY (`location_id`),
KEY `name` (`name`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_manufacturer`
--
CREATE TABLE IF NOT EXISTS
`oc_manufacturer` (
`manufacturer_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`manufacturer_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_manufacturer`
--
INSERT INTO `oc_manufacturer`
(`manufacturer_id`, `name`, `image`, `sort_order`) VALUES
(5, 'HTC',
'catalog/demo/htc_logo.jpg', 0),
(6, 'Palm', 'catalog/demo/palm_logo.jpg',
0),
(7, 'Hewlett-Packard', 'catalog/demo/hp_logo.jpg', 0),
(8, 'Apple',
'catalog/demo/apple_logo.jpg', 0),
(9, 'Canon',
'catalog/demo/canon_logo.jpg', 0),
(10, 'Sony',
'catalog/demo/sony_logo.jpg', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_manufacturer_to_store`
--
CREATE TABLE IF NOT
EXISTS `oc_manufacturer_to_store` (
`manufacturer_id` int(11) NOT NULL,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`manufacturer_id`,`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_manufacturer_to_store`
--
INSERT INTO
`oc_manufacturer_to_store` (`manufacturer_id`, `store_id`) VALUES
(5,
0),
(6, 0),
(7, 0),
(8, 0),
(9, 0),
(10, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_marketing`
--
CREATE TABLE IF NOT EXISTS
`oc_marketing` (
`marketing_id` int(11) NOT NULL AUTO_INCREMENT,
`name`
varchar(32) NOT NULL,
`description` text NOT NULL,
`code` varchar(64)
NOT NULL,
`clicks` int(5) NOT NULL DEFAULT '0',
`date_added` datetime
NOT NULL,
PRIMARY KEY (`marketing_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_modification`
--
CREATE TABLE IF NOT EXISTS
`oc_modification` (
`modification_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`code` varchar(64) NOT NULL,
`author`
varchar(64) NOT NULL,
`version` varchar(32) NOT NULL,
`link`
varchar(255) NOT NULL,
`xml` text NOT NULL,
`status` tinyint(1) NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`modification_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
----------------------------------------------------------
-- Table
structure for table `oc_module`
--
CREATE TABLE IF NOT EXISTS `oc_module`
(
`module_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT
NULL,
`code` varchar(32) NOT NULL,
`setting` text NOT NULL,
PRIMARY KEY
(`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_module`
--
INSERT INTO `oc_module` (`module_id`, `name`, `code`,
`setting`) VALUES
(30, 'Category', 'banner',
'a:5:{s:4:"name";s:17:"Banner -
Category";s:9:"banner_id";s:1:"6";s:5:"width";s:3:"300";s:6:"height";s:3:"300";s:6:"status";s:1:"1";}'),
(29,
'Home Page', 'carousel', 'a:5:{s:4:"name";s:20:"Carousel -
Home
Page";s:9:"banner_id";s:1:"8";s:5:"width";s:3:"130";s:6:"height";s:3:"100";s:6:"status";s:1:"1";}'),
(28,
'Home Page', 'featured', 'a:6:{s:4:"name";s:20:"Featured -
Home
Page";s:7:"product";a:4:{i:0;s:2:"43";i:1;s:2:"40";i:2;s:2:"42";i:3;s:2:"30";}s:5:"limit";s:1:"4";s:5:"width";s:3:"200";s:6:"height";s:3:"200";s:6:"status";s:1:"1";}'),
(27,
'Home Page', 'slideshow', 'a:5:{s:4:"name";s:21:"Slideshow -
Home
Page";s:9:"banner_id";s:1:"7";s:5:"width";s:4:"1140";s:6:"height";s:3:"380";s:6:"status";s:1:"1";}');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option`
--
CREATE TABLE IF NOT EXISTS `oc_option`
(
`option_id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(32) NOT
NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`option_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_option`
--
INSERT INTO `oc_option` (`option_id`,
`type`, `sort_order`) VALUES
(1, 'radio', 1),
(2, 'checkbox', 2),
(4,
'text', 3),
(5, 'select', 4),
(6, 'textarea', 5),
(7, 'file', 6),
(8,
'date', 7),
(9, 'time', 8),
(10, 'datetime', 9),
(11, 'select', 10),
(12,
'date', 11);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_description`
--
CREATE TABLE IF NOT EXISTS
`oc_option_description` (
`option_id` int(11) NOT NULL,
`language_id`
int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`option_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_option_description`
--
INSERT INTO `oc_option_description`
(`option_id`, `language_id`, `name`) VALUES
(1, 1, 'Radio'),
(2, 1,
'Checkbox'),
(4, 1, 'Text'),
(6, 1, 'Textarea'),
(8, 1, 'Date'),
(7, 1,
'File'),
(5, 1, 'Select'),
(9, 1, 'Time'),
(10, 1, 'Date &
Time'),
(12, 1, 'Delivery Date'),
(11, 1, 'Size');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_value`
--
CREATE TABLE IF NOT EXISTS
`oc_option_value` (
`option_value_id` int(11) NOT NULL AUTO_INCREMENT,
`option_id` int(11) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`option_value_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_option_value`
--
INSERT INTO `oc_option_value`
(`option_value_id`, `option_id`, `image`, `sort_order`) VALUES
(43, 1, '',
3),
(32, 1, '', 1),
(45, 2, '', 4),
(44, 2, '', 3),
(42, 5, '', 4),
(41, 5,
'', 3),
(39, 5, '', 1),
(40, 5, '', 2),
(31, 1, '', 2),
(23, 2, '',
1),
(24, 2, '', 2),
(46, 11, '', 1),
(47, 11, '', 2),
(48, 11, '', 3);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_option_value_description`
--
CREATE TABLE IF NOT
EXISTS `oc_option_value_description` (
`option_value_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY
(`option_value_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_option_value_description`
--
INSERT INTO `oc_option_value_description`
(`option_value_id`, `language_id`, `option_id`, `name`) VALUES
(43, 1, 1,
'Large'),
(32, 1, 1, 'Small'),
(45, 1, 2, 'Checkbox 4'),
(44, 1, 2,
'Checkbox 3'),
(31, 1, 1, 'Medium'),
(42, 1, 5, 'Yellow'),
(41, 1, 5,
'Green'),
(39, 1, 5, 'Red'),
(40, 1, 5, 'Blue'),
(23, 1, 2, 'Checkbox
1'),
(24, 1, 2, 'Checkbox 2'),
(48, 1, 11, 'Large'),
(47, 1, 11,
'Medium'),
(46, 1, 11, 'Small');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order`
--
CREATE TABLE IF NOT EXISTS `oc_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_no` int(11) NOT
NULL DEFAULT '0',
`invoice_prefix` varchar(26) NOT NULL,
`store_id`
int(11) NOT NULL DEFAULT '0',
`store_name` varchar(64) NOT NULL,
`store_url` varchar(255) NOT NULL,
`customer_id` int(11) NOT NULL DEFAULT
'0',
`customer_group_id` int(11) NOT NULL DEFAULT '0',
`firstname`
varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email`
varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`fax`
varchar(32) NOT NULL,
`custom_field` text NOT NULL,
`payment_firstname`
varchar(32) NOT NULL,
`payment_lastname` varchar(32) NOT NULL,
`payment_company` varchar(40) NOT NULL,
`payment_address_1` varchar(128)
NOT NULL,
`payment_address_2` varchar(128) NOT NULL,
`payment_city`
varchar(128) NOT NULL,
`payment_postcode` varchar(10) NOT NULL,
`payment_country` varchar(128) NOT NULL,
`payment_country_id` int(11) NOT
NULL,
`payment_zone` varchar(128) NOT NULL,
`payment_zone_id` int(11)
NOT NULL,
`payment_address_format` text NOT NULL,
`payment_custom_field` text NOT NULL,
`payment_method` varchar(128) NOT
NULL,
`payment_code` varchar(128) NOT NULL,
`shipping_firstname`
varchar(32) NOT NULL,
`shipping_lastname` varchar(32) NOT NULL,
`shipping_company` varchar(40) NOT NULL,
`shipping_address_1`
varchar(128) NOT NULL,
`shipping_address_2` varchar(128) NOT NULL,
`shipping_city` varchar(128) NOT NULL,
`shipping_postcode` varchar(10)
NOT NULL,
`shipping_country` varchar(128) NOT NULL,
`shipping_country_id` int(11) NOT NULL,
`shipping_zone` varchar(128) NOT
NULL,
`shipping_zone_id` int(11) NOT NULL,
`shipping_address_format`
text NOT NULL,
`shipping_custom_field` text NOT NULL,
`shipping_method`
varchar(128) NOT NULL,
`shipping_code` varchar(128) NOT NULL,
`comment`
text NOT NULL,
`total` decimal(15,4) NOT NULL DEFAULT '0.0000',
`order_status_id` int(11) NOT NULL DEFAULT '0',
`affiliate_id` int(11)
NOT NULL,
`commission` decimal(15,4) NOT NULL,
`marketing_id` int(11)
NOT NULL,
`tracking` varchar(64) NOT NULL,
`language_id` int(11) NOT
NULL,
`currency_id` int(11) NOT NULL,
`currency_code` varchar(3) NOT
NULL,
`currency_value` decimal(15,8) NOT NULL DEFAULT '1.00000000',
`ip` varchar(40) NOT NULL,
`forwarded_ip` varchar(40) NOT NULL,
`user_agent` varchar(255) NOT NULL,
`accept_language` varchar(255) NOT
NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT
NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_custom_field`
--
CREATE TABLE IF NOT EXISTS
`oc_order_custom_field` (
`order_custom_field_id` int(11) NOT NULL
AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`custom_field_id` int(11)
NOT NULL,
`custom_field_value_id` int(11) NOT NULL,
`name` varchar(255)
NOT NULL,
`value` text NOT NULL,
`type` varchar(32) NOT NULL,
`location` varchar(16) NOT NULL,
PRIMARY KEY (`order_custom_field_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_history`
--
CREATE TABLE IF NOT EXISTS
`oc_order_history` (
`order_history_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_status_id` int(11) NOT NULL,
`notify` tinyint(1) NOT NULL DEFAULT '0',
`comment` text NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_history_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_option`
--
CREATE TABLE IF NOT EXISTS
`oc_order_option` (
`order_option_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_product_id` int(11) NOT NULL,
`product_option_id` int(11) NOT NULL,
`product_option_value_id` int(11)
NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`value` text NOT
NULL,
`type` varchar(32) NOT NULL,
PRIMARY KEY (`order_option_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_product`
--
CREATE TABLE IF NOT EXISTS
`oc_order_product` (
`order_product_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`name`
varchar(255) NOT NULL,
`model` varchar(64) NOT NULL,
`quantity` int(4)
NOT NULL,
`price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`total`
decimal(15,4) NOT NULL DEFAULT '0.0000',
`tax` decimal(15,4) NOT NULL
DEFAULT '0.0000',
`reward` int(8) NOT NULL,
PRIMARY KEY
(`order_product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_recurring`
--
CREATE TABLE IF NOT EXISTS
`oc_order_recurring` (
`order_recurring_id` int(11) NOT NULL
AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`reference` varchar(255)
NOT NULL,
`product_id` int(11) NOT NULL,
`product_name` varchar(255)
NOT NULL,
`product_quantity` int(11) NOT NULL,
`recurring_id` int(11)
NOT NULL,
`recurring_name` varchar(255) NOT NULL,
`recurring_description` varchar(255) NOT NULL,
`recurring_frequency`
varchar(25) NOT NULL,
`recurring_cycle` smallint(6) NOT NULL,
`recurring_duration` smallint(6) NOT NULL,
`recurring_price`
decimal(10,4) NOT NULL,
`trial` tinyint(1) NOT NULL,
`trial_frequency`
varchar(25) NOT NULL,
`trial_cycle` smallint(6) NOT NULL,
`trial_duration` smallint(6) NOT NULL,
`trial_price` decimal(10,4) NOT
NULL,
`status` tinyint(4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`order_recurring_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_recurring_transaction`
--
CREATE TABLE IF
NOT EXISTS `oc_order_recurring_transaction` (
`order_recurring_transaction_id` int(11) NOT NULL AUTO_INCREMENT,
`order_recurring_id` int(11) NOT NULL,
`reference` varchar(255) NOT
NULL,
`type` varchar(255) NOT NULL,
`amount` decimal(10,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`order_recurring_transaction_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_status`
--
CREATE TABLE IF NOT EXISTS
`oc_order_status` (
`order_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY
KEY (`order_status_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_order_status`
--
INSERT INTO `oc_order_status` (`order_status_id`,
`language_id`, `name`) VALUES
(1, 1, 'Ожидание'),
(2, 1, 'В
обработке'),
(3, 1, 'Доставлено'),
(7, 1,
'Отменено'),
(5, 1, 'Сделка завершена'),
(8, 1,
'Возврат'),
(9, 1, 'Отмена и
аннулирование'),
(10, 1, 'Неудавшийся'),
(11, 1,
'Возмещенный'),
(12, 1, 'Полностью
измененный'),
(13, 1, 'Полный возврат');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_total`
--
CREATE TABLE IF NOT EXISTS
`oc_order_total` (
`order_total_id` int(10) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`code` varchar(32) NOT NULL,
`title`
varchar(255) NOT NULL,
`value` decimal(15,4) NOT NULL DEFAULT '0.0000',
`sort_order` int(3) NOT NULL,
PRIMARY KEY (`order_total_id`),
KEY
`order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_order_voucher`
--
CREATE TABLE IF NOT EXISTS
`oc_order_voucher` (
`order_voucher_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`voucher_id` int(11) NOT NULL,
`description` varchar(255) NOT NULL,
`code` varchar(10) NOT NULL,
`from_name` varchar(64) NOT NULL,
`from_email` varchar(96) NOT NULL,
`to_name` varchar(64) NOT NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT NULL,
`message` text NOT NULL,
`amount`
decimal(15,4) NOT NULL,
PRIMARY KEY (`order_voucher_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product`
--
CREATE TABLE IF NOT EXISTS
`oc_product` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`model`
varchar(64) NOT NULL,
`sku` varchar(64) NOT NULL,
`upc` varchar(12) NOT
NULL,
`ean` varchar(14) NOT NULL,
`jan` varchar(13) NOT NULL,
`isbn`
varchar(17) NOT NULL,
`mpn` varchar(64) NOT NULL,
`location`
varchar(128) NOT NULL,
`quantity` int(4) NOT NULL DEFAULT '0',
`stock_status_id` int(11) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`manufacturer_id` int(11) NOT NULL,
`shipping` tinyint(1) NOT NULL
DEFAULT '1',
`price` decimal(15,4) NOT NULL DEFAULT '0.0000',
`points`
int(8) NOT NULL DEFAULT '0',
`tax_class_id` int(11) NOT NULL,
`date_available` date NOT NULL DEFAULT '0000-00-00',
`weight`
decimal(15,8) NOT NULL DEFAULT '0.00000000',
`weight_class_id` int(11)
NOT NULL DEFAULT '0',
`length` decimal(15,8) NOT NULL DEFAULT
'0.00000000',
`width` decimal(15,8) NOT NULL DEFAULT '0.00000000',
`height` decimal(15,8) NOT NULL DEFAULT '0.00000000',
`length_class_id`
int(11) NOT NULL DEFAULT '0',
`subtract` tinyint(1) NOT NULL DEFAULT
'1',
`minimum` int(11) NOT NULL DEFAULT '1',
`sort_order` int(11) NOT
NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`viewed`
int(5) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`product_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product`
--
INSERT INTO `oc_product` (`product_id`,
`model`, `sku`, `upc`, `ean`, `jan`, `isbn`, `mpn`, `location`, `quantity`,
`stock_status_id`, `image`, `manufacturer_id`, `shipping`, `price`,
`points`, `tax_class_id`, `date_available`, `weight`, `weight_class_id`,
`length`, `width`, `height`, `length_class_id`, `subtract`, `minimum`,
`sort_order`, `status`, `viewed`, `date_added`, `date_modified`)
VALUES
(28, 'Product 1', '', '', '', '', '', '', '', 939, 7,
'catalog/demo/htc_touch_hd_1.jpg', 5, 1, '100.0000', 200, 9, '2009-02-03',
'146.40000000', 2, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1,
0, '2009-02-03 16:06:50', '2011-09-30 01:05:39'),
(29, 'Product 2', '', '',
'', '', '', '', '', 999, 6, 'catalog/demo/palm_treo_pro_1.jpg', 6, 1,
'279.9900', 0, 9, '2009-02-03', '133.00000000', 2, '0.00000000',
'0.00000000', '0.00000000', 3, 1, 1, 0, 1, 0, '2009-02-03 16:42:17',
'2011-09-30 01:06:08'),
(30, 'Product 3', '', '', '', '', '', '', '', 7, 6,
'catalog/demo/canon_eos_5d_1.jpg', 9, 1, '100.0000', 0, 9, '2009-02-03',
'0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1,
0, '2009-02-03 16:59:00', '2011-09-30 01:05:23'),
(31, 'Product 4', '', '',
'', '', '', '', '', 1000, 6, 'catalog/demo/nikon_d300_1.jpg', 0, 1,
'80.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000',
'0.00000000', 3, 1, 1, 0, 1, 0, '2009-02-03 17:00:10', '2011-09-30
01:06:00'),
(32, 'Product 5', '', '', '', '', '', '', '', 999, 6,
'catalog/demo/ipod_touch_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03',
'5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1,
0, '2009-02-03 17:07:26', '2011-09-30 01:07:22'),
(33, 'Product 6', '', '',
'', '', '', '', '', 1000, 6, 'catalog/demo/samsung_syncmaster_941bw.jpg',
0, 1, '200.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000',
'0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 17:08:31',
'2011-09-30 01:06:29'),
(34, 'Product 7', '', '', '', '', '', '', '', 1000,
6, 'catalog/demo/ipod_shuffle_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-03',
'5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1,
0, '2009-02-03 18:07:54', '2011-09-30 01:07:17'),
(35, 'Product 8', '', '',
'', '', '', '', '', 1000, 5, '', 0, 0, '100.0000', 0, 9, '2009-02-03',
'5.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1,
0, '2009-02-03 18:08:31', '2011-09-30 01:06:17'),
(36, 'Product 9', '', '',
'', '', '', '', '', 994, 6, 'catalog/demo/ipod_nano_1.jpg', 8, 0,
'100.0000', 100, 9, '2009-02-03', '5.00000000', 1, '0.00000000',
'0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 18:09:19',
'2011-09-30 01:07:12'),
(40, 'product 11', '', '', '', '', '', '', '', 970,
5, 'catalog/demo/iphone_1.jpg', 8, 1, '101.0000', 0, 9, '2009-02-03',
'10.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 1, 1, 0, 1,
0, '2009-02-03 21:07:12', '2011-09-30 01:06:53'),
(41, 'Product 14', '',
'', '', '', '', '', '', 977, 5, 'catalog/demo/imac_1.jpg', 8, 1,
'100.0000', 0, 9, '2009-02-03', '5.00000000', 1, '0.00000000',
'0.00000000', '0.00000000', 1, 1, 1, 0, 1, 0, '2009-02-03 21:07:26',
'2011-09-30 01:06:44'),
(42, 'Product 15', '', '', '', '', '', '', '', 990,
5, 'catalog/demo/apple_cinema_30.jpg', 8, 1, '100.0000', 400, 9,
'2009-02-04', '12.50000000', 1, '1.00000000', '2.00000000', '3.00000000',
1, 1, 2, 0, 1, 0, '2009-02-03 21:07:37', '2011-09-30 00:46:19'),
(43,
'Product 16', '', '', '', '', '', '', '', 929, 5,
'catalog/demo/macbook_1.jpg', 8, 0, '500.0000', 0, 9, '2009-02-03',
'0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1,
0, '2009-02-03 21:07:49', '2011-09-30 01:05:46'),
(44, 'Product 17', '',
'', '', '', '', '', '', 1000, 5, 'catalog/demo/macbook_air_1.jpg', 8, 1,
'1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000',
'0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:08:00',
'2011-09-30 01:05:53'),
(45, 'Product 18', '', '', '', '', '', '', '', 998,
5, 'catalog/demo/macbook_pro_1.jpg', 8, 1, '2000.0000', 0, 100,
'2009-02-03', '0.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2,
1, 1, 0, 1, 0, '2009-02-03 21:08:17', '2011-09-15 22:22:01'),
(46, 'Product
19', '', '', '', '', '', '', '', 1000, 5, 'catalog/demo/sony_vaio_1.jpg',
10, 1, '1000.0000', 0, 9, '2009-02-03', '0.00000000', 1, '0.00000000',
'0.00000000', '0.00000000', 2, 1, 1, 0, 1, 0, '2009-02-03 21:08:29',
'2011-09-30 01:06:39'),
(47, 'Product 21', '', '', '', '', '', '', '',
1000, 5, 'catalog/demo/hp_1.jpg', 7, 1, '100.0000', 400, 9, '2009-02-03',
'1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 1, 0, 1, 0, 1,
0, '2009-02-03 21:08:40', '2011-09-30 01:05:28'),
(48, 'product 20', 'test
1', '', '', '', '', '', 'test 2', 995, 5,
'catalog/demo/ipod_classic_1.jpg', 8, 1, '100.0000', 0, 9, '2009-02-08',
'1.00000000', 1, '0.00000000', '0.00000000', '0.00000000', 2, 1, 1, 0, 1,
0, '2009-02-08 17:21:51', '2011-09-30 01:07:06'),
(49, 'SAM1', '', '', '',
'', '', '', '', 0, 8, 'catalog/demo/samsung_tab_1.jpg', 0, 1, '199.9900',
0, 9, '2011-04-25', '0.00000000', 1, '0.00000000', '0.00000000',
'0.00000000', 1, 1, 1, 1, 1, 1, '2011-04-26 08:57:34', '2011-09-30
01:06:23');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_attribute`
--
CREATE TABLE IF NOT EXISTS
`oc_product_attribute` (
`product_id` int(11) NOT NULL,
`attribute_id`
int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`text` text NOT
NULL,
PRIMARY KEY (`product_id`,`attribute_id`,`language_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_attribute`
--
INSERT INTO
`oc_product_attribute` (`product_id`, `attribute_id`, `language_id`,
`text`) VALUES
(43, 2, 1, '1'),
(47, 4, 1, '16GB'),
(43, 4, 1, '8gb'),
(42,
3, 1, '100mhz'),
(47, 2, 1, '4');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_description`
--
CREATE TABLE IF NOT EXISTS
`oc_product_description` (
`product_id` int(11) NOT NULL,
`language_id`
int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT
NULL,
`tag` text NOT NULL,
`meta_title` varchar(255) NOT NULL,
`meta_description` varchar(255) NOT NULL,
`meta_keyword` varchar(255) NOT
NULL,
PRIMARY KEY (`product_id`,`language_id`),
KEY `name` (`name`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_description`
--
INSERT INTO
`oc_product_description` (`product_id`, `language_id`, `name`,
`description`, `tag`, `meta_title`, `meta_description`, `meta_keyword`)
VALUES
(35, 1, 'Product 8', '<p>\r\n Product
8</p>\r\n', '', '', '', ''),
(48, 1, 'iPod Classic',
'<div class="cpt_product_description
">\r\n <div>\r\n <p>\r\n <strong>More
room to
move.</strong></p>\r\n <p>\r\n With
80GB or 160GB of storage and up to 40 hours of battery life, the new iPod
classic lets you enjoy up to 40,000 songs or up to 200 hours of video or
any combination wherever you
go.</p>\r\n <p>\r\n <strong>Cover
Flow.</strong></p>\r\n <p>\r\n Browse
through your music collection by flipping through album art. Select an
album to turn it over and see the track
list.</p>\r\n <p>\r\n <strong>Enhanced
interface.</strong></p>\r\n <p>\r\n Experience
a whole new way to browse and view your music and
video.</p>\r\n <p>\r\n <strong>Sleeker
design.</strong></p>\r\n <p>\r\n Beautiful,
durable, and sleeker than ever, iPod classic now features an anodized
aluminum and polished stainless steel enclosure with rounded
edges.</p>\r\n </div>\r\n</div>\r\n<!--
cpt_container_end -->', '', '', '', ''),
(40, 1, 'iPhone',
'<p class="intro">\r\n iPhone is a
revolutionary new mobile phone that allows you to make a call by simply
tapping a name or number in your address book, a favorites list, or a call
log. It also automatically syncs all your contacts from a PC, Mac, or
Internet service. And it lets you select and listen to voicemail messages
in whatever order you want just like email.</p>\r\n', '', '',
'', ''),
(28, 1, 'HTC Touch HD', '<p>\r\n HTC Touch - in High
Definition. Watch music videos and streaming content in awe-inspiring high
definition clarity for a mobile experience you never thought possible.
Seductively sleek, the HTC Touch HD provides the next generation of mobile
functionality, all at a simple touch. Fully integrated with Windows Mobile
Professional 6.1, ultrafast 3.5G, GPS, 5MP camera, plus lots more - all
delivered on a breathtakingly crisp 3.8&quot; WVGA touchscreen -
you can take control of your mobile world with the HTC Touch
HD.</p>\r\n<p>\r\n <strong>Features</strong></p>\r\n<ul>\r\n <li>\r\n Processor
Qualcomm&reg; MSM 7201A&trade; 528
MHz</li>\r\n <li>\r\n Windows
Mobile&reg; 6.1 Professional Operating
System</li>\r\n <li>\r\n Memory: 512 MB ROM,
288 MB RAM</li>\r\n <li>\r\n Dimensions: 115
mm x 62.8 mm x 12 mm / 146.4
grams</li>\r\n <li>\r\n 3.8-inch TFT-LCD flat
touch-sensitive screen with 480 x 800 WVGA
resolution</li>\r\n <li>\r\n HSDPA/WCDMA:
Europe/Asia: 900/2100 MHz; Up to 2 Mbps up-link and 7.2 Mbps down-link
speeds</li>\r\n <li>\r\n Quad-band
GSM/GPRS/EDGE: Europe/Asia: 850/900/1800/1900 MHz (Band frequency, HSUPA
availability, and data speed are operator
dependent.)</li>\r\n <li>\r\n Device Control
via HTC TouchFLO&trade; 3D &amp; Touch-sensitive front
panel buttons</li>\r\n <li>\r\n GPS and A-GPS
ready</li>\r\n <li>\r\n Bluetooth&reg;
2.0 with Enhanced Data Rate and A2DP for wireless stereo
headsets</li>\r\n <li>\r\n Wi-Fi&reg;:
IEEE 802.11 b/g</li>\r\n <li>\r\n HTC
ExtUSB&trade; (11-pin mini-USB
2.0)</li>\r\n <li>\r\n 5 megapixel color
camera with auto focus</li>\r\n <li>\r\n VGA
CMOS color camera</li>\r\n <li>\r\n Built-in
3.5 mm audio jack, microphone, speaker, and FM
radio</li>\r\n <li>\r\n Ring tone formats:
AAC, AAC+, eAAC+, AMR-NB, AMR-WB, QCP, MP3, WMA,
WAV</li>\r\n <li>\r\n 40 polyphonic and
standard MIDI format 0 and 1 (SMF)/SP
MIDI</li>\r\n <li>\r\n Rechargeable
Lithium-ion or Lithium-ion polymer 1350 mAh
battery</li>\r\n <li>\r\n Expansion Slot:
microSD&trade; memory card (SD 2.0
compatible)</li>\r\n <li>\r\n AC Adapter
Voltage range/frequency: 100 ~ 240V AC, 50/60 Hz DC output: 5V and
1A</li>\r\n <li>\r\n Special Features: FM
Radio, G-Sensor</li>\r\n</ul>\r\n', '', '', '',
''),
(44, 1, 'MacBook Air', '<div>\r\n MacBook Air is
ultrathin, ultraportable, and ultra unlike anything else. But you
don&rsquo;t lose inches and pounds overnight. It&rsquo;s
the result of rethinking conventions. Of multiple wireless innovations. And
of breakthrough design. With MacBook Air, mobile computing suddenly has a
new standard.</div>\r\n', '', '', '', ''),
(45, 1, 'MacBook
Pro', '<div class="cpt_product_description
">\r\n <div>\r\n <p>\r\n <b>Latest
Intel mobile
architecture</b></p>\r\n <p>\r\n Powered
by the most advanced mobile processors from Intel, the new Core 2 Duo
MacBook Pro is over 50% faster than the original Core Duo MacBook Pro and
now supports up to 4GB of
RAM.</p>\r\n <p>\r\n <b>Leading-edge
graphics</b></p>\r\n <p>\r\n The
NVIDIA GeForce 8600M GT delivers exceptional graphics processing power. For
the ultimate creative canvas, you can even configure the 17-inch model with
a 1920-by-1200 resolution
display.</p>\r\n <p>\r\n <b>Designed
for life on the
road</b></p>\r\n <p>\r\n Innovations
such as a magnetic power connection and an illuminated keyboard with
ambient light sensor put the MacBook Pro in a class by
itself.</p>\r\n <p>\r\n <b>Connect.
Create.
Communicate.</b></p>\r\n <p>\r\n Quickly
set up a video conference with the built-in iSight camera. Control
presentations and media from up to 30 feet away with the included Apple
Remote. Connect to high-bandwidth peripherals with FireWire 800 and
DVI.</p>\r\n <p>\r\n <b>Next-generation
wireless</b></p>\r\n <p>\r\n Featuring
802.11n wireless technology, the MacBook Pro delivers up to five times the
performance and up to twice the range of previous-generation
technologies.</p>\r\n </div>\r\n</div>\r\n<!--
cpt_container_end -->', '', '', '', ''),
(29, 1, 'Palm Treo Pro',
'<p>\r\n Redefine your workday with the Palm Treo Pro
smartphone. Perfectly balanced, you can respond to business and personal
email, stay on top of appointments and contacts, and use Wi-Fi or GPS when
you&rsquo;re out and about. Then watch a video on YouTube, catch up
with news and sports on the web, or listen to a few songs. Balance your
work and play the way you like it, with the Palm Treo
Pro.</p>\r\n<p>\r\n <strong>Features</strong></p>\r\n<ul>\r\n <li>\r\n Windows
Mobile&reg; 6.1 Professional
Edition</li>\r\n <li>\r\n Qualcomm&reg;
MSM7201 400MHz
Processor</li>\r\n <li>\r\n 320x320
transflective colour TFT
touchscreen</li>\r\n <li>\r\n HSDPA/UMTS/EDGE/GPRS/GSM
radio</li>\r\n <li>\r\n Tri-band UMTS
&mdash; 850MHz, 1900MHz,
2100MHz</li>\r\n <li>\r\n Quad-band GSM
&mdash;
850/900/1800/1900</li>\r\n <li>\r\n 802.11b/g
with WPA, WPA2, and 801.1x
authentication</li>\r\n <li>\r\n Built-in
GPS</li>\r\n <li>\r\n Bluetooth Version: 2.0 +
Enhanced Data Rate</li>\r\n <li>\r\n 256MB
storage (100MB user available), 128MB
RAM</li>\r\n <li>\r\n 2.0 megapixel camera, up
to 8x digital zoom and video
capture</li>\r\n <li>\r\n Removable,
rechargeable 1500mAh lithium-ion
battery</li>\r\n <li>\r\n Up to 5.0 hours talk
time and up to 250 hours
standby</li>\r\n <li>\r\n MicroSDHC card
expansion (up to 32GB
supported)</li>\r\n <li>\r\n MicroUSB 2.0 for
synchronization and
charging</li>\r\n <li>\r\n 3.5mm stereo
headset jack</li>\r\n <li>\r\n 60mm (W) x
114mm (L) x 13.5mm (D) /
133g</li>\r\n</ul>\r\n', '', '', '', ''),
(36,
1, 'iPod Nano',
'<div>\r\n <p>\r\n <strong>Video
in your
pocket.</strong></p>\r\n <p>\r\n Its
the small iPod with one very big idea: video. The worlds most popular music
player now lets you enjoy movies, TV shows, and more on a two-inch display
thats 65% brighter than
before.</p>\r\n <p>\r\n <strong>Cover
Flow.</strong></p>\r\n <p>\r\n Browse
through your music collection by flipping through album art. Select an
album to turn it over and see the track
list.<strong>&nbsp;</strong></p>\r\n <p>\r\n <strong>Enhanced
interface.</strong></p>\r\n <p>\r\n Experience
a whole new way to browse and view your music and
video.</p>\r\n <p>\r\n <strong>Sleek
and
colorful.</strong></p>\r\n <p>\r\n With
an anodized aluminum and polished stainless steel enclosure and a choice of
five colors, iPod nano is dressed to
impress.</p>\r\n <p>\r\n <strong>iTunes.</strong></p>\r\n <p>\r\n Available
as a free download, iTunes makes it easy to browse and buy millions of
songs, movies, TV shows, audiobooks, and games and download free podcasts
all at the iTunes Store. And you can import your own music, manage your
whole media library, and sync your iPod or iPhone with
ease.</p>\r\n</div>\r\n', '', '', '', ''),
(46,
1, 'Sony VAIO', '<div>\r\n Unprecedented power. The next
generation of processing technology has arrived. Built into the newest VAIO
notebooks lies Intel&#39;s latest, most powerful innovation yet:
Intel&reg; Centrino&reg; 2 processor technology. Boasting
incredible speed, expanded wireless connectivity, enhanced multimedia
support and greater energy efficiency, all the high-performance essentials
are seamlessly combined into a single chip.</div>\r\n', '',
'', '', ''),
(47, 1, 'HP LP3065', '<p>\r\n Stop your
co-workers in their tracks with the stunning new 30-inch diagonal HP LP3065
Flat Panel Monitor. This flagship monitor features best-in-class
performance and presentation features on a huge wide-aspect screen while
letting you work as comfortably as possible - you might even forget
you&#39;re at the office</p>\r\n', '', '', '',
''),
(32, 1, 'iPod Touch',
'<p>\r\n <strong>Revolutionary multi-touch
interface.</strong><br />\r\n iPod touch
features the same multi-touch screen technology as iPhone. Pinch to zoom in
on a photo. Scroll through your songs and videos with a flick. Flip through
your library by album artwork with Cover
Flow.</p>\r\n<p>\r\n <strong>Gorgeous
3.5-inch widescreen display.</strong><br
/>\r\n Watch your movies, TV shows, and photos come alive with
bright, vivid color on the 320-by-480-pixel
display.</p>\r\n<p>\r\n <strong>Music
downloads straight from iTunes.</strong><br
/>\r\n Shop the iTunes Wi-Fi Music Store from anywhere with Wi-Fi.1
Browse or search to find the music youre looking for, preview it, and buy
it with just a
tap.</p>\r\n<p>\r\n <strong>Surf
the web with Wi-Fi.</strong><br />\r\n Browse
the web using Safari and watch YouTube videos on the first iPod with Wi-Fi
built in<br />\r\n &nbsp;</p>\r\n', '',
'', '', ''),
(41, 1, 'iMac', '<div>\r\n Just when you thought
iMac had everything, now there´s even more. More powerful Intel
Core 2 Duo processors. And more memory standard. Combine this with Mac OS X
Leopard and iLife ´08, and it´s more all-in-one than
ever. iMac packs amazing performance into a stunningly slim
space.</div>\r\n', '', '', '', ''),
(33, 1, 'Samsung
SyncMaster 941BW', '<div>\r\n Imagine the advantages of going
big without slowing down. The big 19&quot; 941BW monitor combines
wide aspect ratio with fast pixel response time, for bigger images, more
room to work and crisp motion. In addition, the exclusive MagicBright 2,
MagicColor and MagicTune technologies help deliver the ideal image in every
situation, while sleek, narrow bezels and adjustable stands deliver style
just the way you want it. With the Samsung 941BW widescreen analog/digital
LCD monitor, it&#39;s not hard to
imagine.</div>\r\n', '', '', '', ''),
(34, 1, 'iPod Shuffle',
'<div>\r\n <strong>Born to be
worn.</strong>\r\n <p>\r\n Clip on the worlds
most wearable music player and take up to 240 songs with you anywhere.
Choose from five colors including four new hues to make your musical
fashion
statement.</p>\r\n <p>\r\n <strong>Random
meets
rhythm.</strong></p>\r\n <p>\r\n With
iTunes autofill, iPod shuffle can deliver a new musical experience every
time you sync. For more randomness, you can shuffle songs during playback
with the slide of a
switch.</p>\r\n <strong>Everything is
easy.</strong>\r\n <p>\r\n Charge and sync
with the included USB dock. Operate the iPod shuffle controls with one
hand. Enjoy up to 12 hours straight of skip-free music
playback.</p>\r\n</div>\r\n', '', '', '',
''),
(43, 1, 'MacBook',
'<div>\r\n <p>\r\n <b>Intel Core
2 Duo
processor</b></p>\r\n <p>\r\n Powered
by an Intel Core 2 Duo processor at speeds up to 2.16GHz, the new MacBook
is the fastest
ever.</p>\r\n <p>\r\n <b>1GB
memory, larger hard
drives</b></p>\r\n <p>\r\n The
new MacBook now comes with 1GB of memory standard and larger hard drives
for the entire line perfect for running more of your favorite applications
and storing growing media
collections.</p>\r\n <p>\r\n <b>Sleek,
1.08-inch-thin
design</b></p>\r\n <p>\r\n MacBook
makes it easy to hit the road thanks to its tough polycarbonate case,
built-in wireless technologies, and innovative MagSafe Power Adapter that
releases automatically if someone accidentally trips on the
cord.</p>\r\n <p>\r\n <b>Built-in
iSight
camera</b></p>\r\n <p>\r\n Right
out of the box, you can have a video chat with friends or family,2 record a
video at your desk, or take fun pictures with Photo
Booth</p>\r\n</div>\r\n', '', '', '', ''),
(31,
1, 'Nikon D300', '<div class="cpt_product_description
">\r\n <div>\r\n Engineered with pro-level
features and performance, the 12.3-effective-megapixel D300 combines brand
new technologies with advanced features inherited from Nikon&#39;s
newly announced D3 professional digital SLR camera to offer serious
photographers remarkable performance combined with agility.<br
/>\r\n <br />\r\n Similar to the D3, the D300
features Nikon&#39;s exclusive EXPEED Image Processing System that
is central to driving the speed and processing power needed for many of the
camera&#39;s new features. The D300 features a new 51-point
autofocus system with Nikon&#39;s 3D Focus Tracking feature and two
new LiveView shooting modes that allow users to frame a photograph using
the camera&#39;s high-resolution LCD monitor. The D300 shares a
similar Scene Recognition System as is found in the D3; it promises to
greatly enhance the accuracy of autofocus, autoexposure, and auto white
balance by recognizing the subject or scene being photographed and applying
this information to the calculations for the three functions.<br
/>\r\n <br />\r\n The D300 reacts with lightning
speed, powering up in a mere 0.13 seconds and shooting with an
imperceptible 45-millisecond shutter release lag time. The D300 is capable
of shooting at a rapid six frames per second and can go as fast as eight
frames per second when using the optional MB-D10 multi-power battery pack.
In continuous bursts, the D300 can shoot up to 100 shots at full
12.3-megapixel resolution. (NORMAL-LARGE image setting, using a SanDisk
Extreme IV 1GB CompactFlash card.)<br />\r\n <br
/>\r\n The D300 incorporates a range of innovative technologies and
features that will significantly improve the accuracy, control, and
performance photographers can get from their equipment. Its new Scene
Recognition System advances the use of Nikon&#39;s acclaimed
1,005-segment sensor to recognize colors and light patterns that help the
camera determine the subject and the type of scene being photographed
before a picture is taken. This information is used to improve the accuracy
of autofocus, autoexposure, and auto white balance functions in the D300.
For example, the camera can track moving subjects better and by identifying
them, it can also automatically select focus points faster and with greater
accuracy. It can also analyze highlights and more accurately determine
exposure, as well as infer light sources to deliver more accurate white
balance
detection.</div>\r\n</div>\r\n<!--
cpt_container_end -->', '', '', '', ''),
(49, 1, 'Samsung Galaxy Tab
10.1', '<p>\r\n Samsung Galaxy Tab 10.1, is the
world&rsquo;s thinnest tablet, measuring 8.6 mm thickness, running
with Android 3.0 Honeycomb OS on a 1GHz dual-core Tegra 2 processor,
similar to its younger brother Samsung Galaxy Tab
8.9.</p>\r\n<p>\r\n Samsung Galaxy Tab 10.1
gives pure Android 3.0 experience, adding its new TouchWiz UX or TouchWiz
4.0 &ndash; includes a live panel, which lets you to customize with
different content, such as your pictures, bookmarks, and social feeds,
sporting a 10.1 inches WXGA capacitive touch screen with 1280 x 800 pixels
of resolution, equipped with 3 megapixel rear camera with LED flash and a 2
megapixel front camera, HSPA+ connectivity up to 21Mbps, 720p HD video
recording capability, 1080p HD playback, DLNA support, Bluetooth 2.1, USB
2.0, gyroscope, Wi-Fi 802.11 a/b/g/n, micro-SD slot, 3.5mm headphone jack,
and SIM slot, including the Samsung Stick &ndash; a Bluetooth
microphone that can be carried in a pocket like a pen and sound dock with
powered subwoofer.</p>\r\n<p>\r\n Samsung
Galaxy Tab 10.1 will come in 16GB / 32GB / 64GB verities and pre-loaded
with Social Hub, Reader&rsquo;s Hub, Music Hub and Samsung Mini
Apps Tray &ndash; which gives you access to more commonly used apps
to help ease multitasking and it is capable of Adobe Flash Player 10.2,
powered by 6860mAh battery that gives you 10hours of video-playback
time.&nbsp;&auml;&ouml;</p>\r\n', '',
'', '', ''),
(42, 1, 'Apple Cinema 30"',
'<p>\r\n <font
face="helvetica,geneva,arial"
size="2"><font
face="Helvetica" size="2">The
30-inch Apple Cinema HD Display delivers an amazing 2560 x 1600 pixel
resolution. Designed specifically for the creative professional, this
display provides more space for easier access to all the tools and palettes
needed to edit, format and composite your work. Combine this display with a
Mac Pro, MacBook Pro, or PowerMac G5 and there&#39;s no limit to
what you can achieve. <br />\r\n <br
/>\r\n </font><font
face="Helvetica" size="2">The
Cinema HD features an active-matrix liquid crystal display that produces
flicker-free images that deliver twice the brightness, twice the sharpness
and twice the contrast ratio of a typical CRT display. Unlike other flat
panels, it&#39;s designed with a pure digital interface to deliver
distortion-free images that never need adjusting. With over 4 million
digital pixels, the display is uniquely suited for scientific and technical
applications such as visualizing molecular structures or analyzing
geological data. <br />\r\n <br
/>\r\n </font><font
face="Helvetica"
size="2">Offering accurate, brilliant color
performance, the Cinema HD delivers up to 16.7 million colors across a wide
gamut allowing you to see subtle nuances between colors from soft pastels
to rich jewel tones. A wide viewing angle ensures uniform color from edge
to edge. Apple&#39;s ColorSync technology allows you to create
custom profiles to maintain consistent color onscreen and in print. The
result: You can confidently use this display in all your color-critical
applications. <br />\r\n <br
/>\r\n </font><font
face="Helvetica" size="2">Housed
in a new aluminum design, the display has a very thin bezel that enhances
visual accuracy. Each display features two FireWire 400 ports and two USB
2.0 ports, making attachment of desktop peripherals, such as iSight, iPod,
digital and still cameras, hard drives, printers and scanners, even more
accessible and convenient. Taking advantage of the much thinner and lighter
footprint of an LCD, the new displays support the VESA (Video Electronics
Standards Association) mounting interface standard. Customers with the
optional Cinema Display VESA Mount Adapter kit gain the flexibility to
mount their display in locations most appropriate for their work
environment. <br />\r\n <br
/>\r\n </font><font
face="Helvetica" size="2">The
Cinema HD features a single cable design with elegant breakout for the USB
2.0, FireWire 400 and a pure digital connection using the industry standard
Digital Video Interface (DVI) interface. The DVI connection allows for a
direct pure-digital connection.<br
/>\r\n </font></font></p>\r\n<h3>\r\n Features:</h3>\r\n<p>\r\n Unrivaled
display
performance</p>\r\n<ul>\r\n <li>\r\n 30-inch
(viewable) active-matrix liquid crystal display provides breathtaking image
quality and vivid, richly saturated
color.</li>\r\n <li>\r\n Support for
2560-by-1600 pixel resolution for display of high definition still and
video imagery.</li>\r\n <li>\r\n Wide-format
design for simultaneous display of two full pages of text and
graphics.</li>\r\n <li>\r\n Industry standard
DVI connector for direct attachment to Mac- and Windows-based desktops and
notebooks</li>\r\n <li>\r\n Incredibly wide
(170 degree) horizontal and vertical viewing angle for maximum visibility
and color
performance.</li>\r\n <li>\r\n Lightning-fast
pixel response for full-motion digital video
playback.</li>\r\n <li>\r\n Support for 16.7
million saturated colors, for use in all graphics-intensive
applications.</li>\r\n</ul>\r\n<p>\r\n Simple
setup and
operation</p>\r\n<ul>\r\n <li>\r\n Single
cable with elegant breakout for connection to DVI, USB and FireWire
ports</li>\r\n <li>\r\n Built-in two-port USB
2.0 hub for easy connection of desktop peripheral
devices.</li>\r\n <li>\r\n Two FireWire 400
ports to support iSight and other desktop
peripherals</li>\r\n</ul>\r\n<p>\r\n Sleek,
elegant
design</p>\r\n<ul>\r\n <li>\r\n Huge
virtual workspace, very small
footprint.</li>\r\n <li>\r\n Narrow Bezel
design to minimize visual impact of using dual
displays</li>\r\n <li>\r\n Unique hinge design
for effortless
adjustment</li>\r\n <li>\r\n Support for VESA
mounting solutions (Apple Cinema Display VESA Mount Adapter sold
separately)</li>\r\n</ul>\r\n<h3>\r\n Technical
specifications</h3>\r\n<p>\r\n <b>Screen
size (diagonal viewable image
size)</b></p>\r\n<ul>\r\n <li>\r\n Apple
Cinema HD Display: 30 inches (29.7-inch
viewable)</li>\r\n</ul>\r\n<p>\r\n <b>Screen
type</b></p>\r\n<ul>\r\n <li>\r\n Thin
film transistor (TFT) active-matrix liquid crystal display
(AMLCD)</li>\r\n</ul>\r\n<p>\r\n <b>Resolutions</b></p>\r\n<ul>\r\n <li>\r\n 2560
x 1600 pixels (optimum
resolution)</li>\r\n <li>\r\n 2048 x
1280</li>\r\n <li>\r\n 1920 x
1200</li>\r\n <li>\r\n 1280 x
800</li>\r\n <li>\r\n 1024 x
640</li>\r\n</ul>\r\n<p>\r\n <b>Display
colors
(maximum)</b></p>\r\n<ul>\r\n <li>\r\n 16.7
million</li>\r\n</ul>\r\n<p>\r\n <b>Viewing
angle
(typical)</b></p>\r\n<ul>\r\n <li>\r\n 170&deg;
horizontal; 170&deg;
vertical</li>\r\n</ul>\r\n<p>\r\n <b>Brightness
(typical)</b></p>\r\n<ul>\r\n <li>\r\n 30-inch
Cinema HD Display: 400
cd/m2</li>\r\n</ul>\r\n<p>\r\n <b>Contrast
ratio
(typical)</b></p>\r\n<ul>\r\n <li>\r\n 700:1</li>\r\n</ul>\r\n<p>\r\n <b>Response
time
(typical)</b></p>\r\n<ul>\r\n <li>\r\n 16
ms</li>\r\n</ul>\r\n<p>\r\n <b>Pixel
pitch</b></p>\r\n<ul>\r\n <li>\r\n 30-inch
Cinema HD Display: 0.250
mm</li>\r\n</ul>\r\n<p>\r\n <b>Screen
treatment</b></p>\r\n<ul>\r\n <li>\r\n Antiglare
hardcoat</li>\r\n</ul>\r\n<p>\r\n <b>User
controls (hardware and
software)</b></p>\r\n<ul>\r\n <li>\r\n Display
Power,</li>\r\n <li>\r\n System sleep,
wake</li>\r\n <li>\r\n Brightness</li>\r\n <li>\r\n Monitor
tilt</li>\r\n</ul>\r\n<p>\r\n <b>Connectors
and cables</b><br
/>\r\n Cable</p>\r\n<ul>\r\n <li>\r\n DVI
(Digital Visual
Interface)</li>\r\n <li>\r\n FireWire
400</li>\r\n <li>\r\n USB
2.0</li>\r\n <li>\r\n DC power (24
V)</li>\r\n</ul>\r\n<p>\r\n Connectors</p>\r\n<ul>\r\n <li>\r\n Two-port,
self-powered USB 2.0 hub</li>\r\n <li>\r\n Two
FireWire 400
ports</li>\r\n <li>\r\n Kensington security
port</li>\r\n</ul>\r\n<p>\r\n <b>VESA
mount adapter</b><br />\r\n Requires optional
Cinema Display VESA Mount Adapter
(M9649G/A)</p>\r\n<ul>\r\n <li>\r\n Compatible
with VESA FDMI (MIS-D, 100, C) compliant mounting
solutions</li>\r\n</ul>\r\n<p>\r\n <b>Electrical
requirements</b></p>\r\n<ul>\r\n <li>\r\n Input
voltage: 100-240 VAC
50-60Hz</li>\r\n <li>\r\n Maximum power when
operating: 150W</li>\r\n <li>\r\n Energy saver
mode: 3W or
less</li>\r\n</ul>\r\n<p>\r\n <b>Environmental
requirements</b></p>\r\n<ul>\r\n <li>\r\n Operating
temperature: 50&deg; to 95&deg; F (10&deg; to
35&deg; C)</li>\r\n <li>\r\n Storage
temperature: -40&deg; to 116&deg; F (-40&deg; to
47&deg; C)</li>\r\n <li>\r\n Operating
humidity: 20% to 80%
noncondensing</li>\r\n <li>\r\n Maximum
operating altitude: 10,000
feet</li>\r\n</ul>\r\n<p>\r\n <b>Agency
approvals</b></p>\r\n<ul>\r\n <li>\r\n FCC
Part 15 Class B</li>\r\n <li>\r\n EN55022
Class
B</li>\r\n <li>\r\n EN55024</li>\r\n <li>\r\n VCCI
Class B</li>\r\n <li>\r\n AS/NZS 3548 Class
B</li>\r\n <li>\r\n CNS 13438 Class
B</li>\r\n <li>\r\n ICES-003 Class
B</li>\r\n <li>\r\n ISO 13406 part
2</li>\r\n <li>\r\n MPR
II</li>\r\n <li>\r\n IEC
60950</li>\r\n <li>\r\n UL
60950</li>\r\n <li>\r\n CSA
60950</li>\r\n <li>\r\n EN60950</li>\r\n <li>\r\n ENERGY
STAR</li>\r\n <li>\r\n TCO
&#39;03</li>\r\n</ul>\r\n<p>\r\n <b>Size
and weight</b><br />\r\n 30-inch Apple Cinema
HD
Display</p>\r\n<ul>\r\n <li>\r\n Height:
21.3 inches (54.3 cm)</li>\r\n <li>\r\n Width:
27.2 inches (68.8 cm)</li>\r\n <li>\r\n Depth:
8.46 inches (21.5
cm)</li>\r\n <li>\r\n Weight: 27.5 pounds
(12.5
kg)</li>\r\n</ul>\r\n<p>\r\n <b>System
Requirements</b></p>\r\n<ul>\r\n <li>\r\n Mac
Pro, all graphic
options</li>\r\n <li>\r\n MacBook
Pro</li>\r\n <li>\r\n Power Mac G5 (PCI-X)
with ATI Radeon 9650 or better or NVIDIA GeForce 6800 GT DDL or
better</li>\r\n <li>\r\n Power Mac G5 (PCI
Express), all graphics
options</li>\r\n <li>\r\n PowerBook G4 with
dual-link DVI
support</li>\r\n <li>\r\n Windows PC and
graphics card that supports DVI ports with dual-link digital bandwidth and
VESA DDC standard for plug-and-play
setup</li>\r\n</ul>\r\n', '', '', '', ''),
(30,
1, 'Canon EOS 5D', '<p>\r\n Canon''s press material for the
EOS 5D states that it ''defines (a) new D-SLR category'', while we''re not
typically too concerned with marketing talk this particular statement is
clearly pretty accurate. The EOS 5D is unlike any previous digital SLR in
that it combines a full-frame (35 mm sized) high resolution sensor (12.8
megapixels) with a relatively compact body (slightly larger than the EOS
20D, although in your hand it feels noticeably ''chunkier''). The EOS 5D is
aimed to slot in between the EOS 20D and the EOS-1D professional digital
SLR''s, an important difference when compared to the latter is that the EOS
5D doesn''t have any environmental seals. While Canon don''t specifically
refer to the EOS 5D as a ''professional'' digital SLR it will have obvious
appeal to professionals who want a high quality digital SLR in a body
lighter than the EOS-1D. It will also no doubt appeal to current EOS 20D
owners (although lets hope they''ve not bought too many EF-S lenses...)
äë</p>\r\n', '', '', '', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_discount`
--
CREATE TABLE IF NOT EXISTS
`oc_product_discount` (
`product_discount_id` int(11) NOT NULL
AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_group_id`
int(11) NOT NULL,
`quantity` int(4) NOT NULL DEFAULT '0',
`priority`
int(5) NOT NULL DEFAULT '1',
`price` decimal(15,4) NOT NULL DEFAULT
'0.0000',
`date_start` date NOT NULL DEFAULT '0000-00-00',
`date_end`
date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`product_discount_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_discount`
--
INSERT INTO `oc_product_discount`
(`product_discount_id`, `product_id`, `customer_group_id`, `quantity`,
`priority`, `price`, `date_start`, `date_end`) VALUES
(440, 42, 1, 30, 1,
'66.0000', '0000-00-00', '0000-00-00'),
(439, 42, 1, 20, 1, '77.0000',
'0000-00-00', '0000-00-00'),
(438, 42, 1, 10, 1, '88.0000', '0000-00-00',
'0000-00-00');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_filter`
--
CREATE TABLE IF NOT EXISTS
`oc_product_filter` (
`product_id` int(11) NOT NULL,
`filter_id`
int(11) NOT NULL,
PRIMARY KEY (`product_id`,`filter_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_image`
--
CREATE TABLE IF NOT EXISTS
`oc_product_image` (
`product_image_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`image` varchar(255) DEFAULT NULL,
`sort_order` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY
(`product_image_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_image`
--
INSERT INTO `oc_product_image` (`product_image_id`,
`product_id`, `image`, `sort_order`) VALUES
(2345, 30,
'catalog/demo/canon_eos_5d_2.jpg', 0),
(2321, 47, 'catalog/demo/hp_3.jpg',
0),
(2035, 28, 'catalog/demo/htc_touch_hd_2.jpg', 0),
(2351, 41,
'catalog/demo/imac_3.jpg', 0),
(1982, 40, 'catalog/demo/iphone_6.jpg',
0),
(2001, 36, 'catalog/demo/ipod_nano_5.jpg', 0),
(2000, 36,
'catalog/demo/ipod_nano_4.jpg', 0),
(2005, 34,
'catalog/demo/ipod_shuffle_5.jpg', 0),
(2004, 34,
'catalog/demo/ipod_shuffle_4.jpg', 0),
(2011, 32,
'catalog/demo/ipod_touch_7.jpg', 0),
(2010, 32,
'catalog/demo/ipod_touch_6.jpg', 0),
(2009, 32,
'catalog/demo/ipod_touch_5.jpg', 0),
(1971, 43,
'catalog/demo/macbook_5.jpg', 0),
(1970, 43, 'catalog/demo/macbook_4.jpg',
0),
(1974, 44, 'catalog/demo/macbook_air_4.jpg', 0),
(1973, 44,
'catalog/demo/macbook_air_2.jpg', 0),
(1977, 45,
'catalog/demo/macbook_pro_2.jpg', 0),
(1976, 45,
'catalog/demo/macbook_pro_3.jpg', 0),
(1986, 31,
'catalog/demo/nikon_d300_3.jpg', 0),
(1985, 31,
'catalog/demo/nikon_d300_2.jpg', 0),
(1988, 29,
'catalog/demo/palm_treo_pro_3.jpg', 0),
(1995, 46,
'catalog/demo/sony_vaio_5.jpg', 0),
(1994, 46,
'catalog/demo/sony_vaio_4.jpg', 0),
(1991, 48,
'catalog/demo/ipod_classic_4.jpg', 0),
(1990, 48,
'catalog/demo/ipod_classic_3.jpg', 0),
(1981, 40,
'catalog/demo/iphone_2.jpg', 0),
(1980, 40, 'catalog/demo/iphone_5.jpg',
0),
(2344, 30, 'catalog/demo/canon_eos_5d_3.jpg', 0),
(2320, 47,
'catalog/demo/hp_2.jpg', 0),
(2034, 28, 'catalog/demo/htc_touch_hd_3.jpg',
0),
(2350, 41, 'catalog/demo/imac_2.jpg', 0),
(1979, 40,
'catalog/demo/iphone_3.jpg', 0),
(1978, 40, 'catalog/demo/iphone_4.jpg',
0),
(1989, 48, 'catalog/demo/ipod_classic_2.jpg', 0),
(1999, 36,
'catalog/demo/ipod_nano_2.jpg', 0),
(1998, 36,
'catalog/demo/ipod_nano_3.jpg', 0),
(2003, 34,
'catalog/demo/ipod_shuffle_2.jpg', 0),
(2002, 34,
'catalog/demo/ipod_shuffle_3.jpg', 0),
(2008, 32,
'catalog/demo/ipod_touch_2.jpg', 0),
(2007, 32,
'catalog/demo/ipod_touch_3.jpg', 0),
(2006, 32,
'catalog/demo/ipod_touch_4.jpg', 0),
(1969, 43,
'catalog/demo/macbook_2.jpg', 0),
(1968, 43, 'catalog/demo/macbook_3.jpg',
0),
(1972, 44, 'catalog/demo/macbook_air_3.jpg', 0),
(1975, 45,
'catalog/demo/macbook_pro_4.jpg', 0),
(1984, 31,
'catalog/demo/nikon_d300_4.jpg', 0),
(1983, 31,
'catalog/demo/nikon_d300_5.jpg', 0),
(1987, 29,
'catalog/demo/palm_treo_pro_2.jpg', 0),
(1993, 46,
'catalog/demo/sony_vaio_2.jpg', 0),
(1992, 46,
'catalog/demo/sony_vaio_3.jpg', 0),
(2327, 49,
'catalog/demo/samsung_tab_7.jpg', 0),
(2326, 49,
'catalog/demo/samsung_tab_6.jpg', 0),
(2325, 49,
'catalog/demo/samsung_tab_5.jpg', 0),
(2324, 49,
'catalog/demo/samsung_tab_4.jpg', 0),
(2323, 49,
'catalog/demo/samsung_tab_3.jpg', 0),
(2322, 49,
'catalog/demo/samsung_tab_2.jpg', 0),
(2317, 42,
'catalog/demo/canon_logo.jpg', 0),
(2316, 42, 'catalog/demo/hp_1.jpg',
0),
(2315, 42, 'catalog/demo/compaq_presario.jpg', 0),
(2314, 42,
'catalog/demo/canon_eos_5d_1.jpg', 0),
(2313, 42,
'catalog/demo/canon_eos_5d_2.jpg', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_option`
--
CREATE TABLE IF NOT EXISTS
`oc_product_option` (
`product_option_id` int(11) NOT NULL
AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`option_id` int(11) NOT
NULL,
`value` text NOT NULL,
`required` tinyint(1) NOT NULL,
PRIMARY
KEY (`product_option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_option`
--
INSERT INTO `oc_product_option`
(`product_option_id`, `product_id`, `option_id`, `value`, `required`)
VALUES
(224, 35, 11, '', 1),
(225, 47, 12, '2011-04-22', 1),
(223, 42, 2,
'', 1),
(217, 42, 5, '', 1),
(209, 42, 6, '', 1),
(218, 42, 1, '',
1),
(208, 42, 4, 'test', 1),
(219, 42, 8, '2011-02-20', 1),
(222, 42, 7,
'', 1),
(221, 42, 9, '22:25', 1),
(220, 42, 10, '2011-02-20 22:25',
1),
(226, 30, 5, '', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_option_value`
--
CREATE TABLE IF NOT
EXISTS `oc_product_option_value` (
`product_option_value_id` int(11) NOT
NULL AUTO_INCREMENT,
`product_option_id` int(11) NOT NULL,
`product_id`
int(11) NOT NULL,
`option_id` int(11) NOT NULL,
`option_value_id`
int(11) NOT NULL,
`quantity` int(3) NOT NULL,
`subtract` tinyint(1) NOT
NULL,
`price` decimal(15,4) NOT NULL,
`price_prefix` varchar(1) NOT
NULL,
`points` int(8) NOT NULL,
`points_prefix` varchar(1) NOT NULL,
`weight` decimal(15,8) NOT NULL,
`weight_prefix` varchar(1) NOT NULL,
PRIMARY KEY (`product_option_value_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_option_value`
--
INSERT INTO `oc_product_option_value`
(`product_option_value_id`, `product_option_id`, `product_id`, `option_id`,
`option_value_id`, `quantity`, `subtract`, `price`, `price_prefix`,
`points`, `points_prefix`, `weight`, `weight_prefix`) VALUES
(1, 217, 42,
5, 41, 100, 0, '1.0000', '+', 0, '+', '1.00000000', '+'),
(6, 218, 42, 1,
31, 146, 1, '20.0000', '+', 2, '-', '20.00000000', '+'),
(7, 218, 42, 1,
43, 300, 1, '30.0000', '+', 3, '+', '30.00000000', '+'),
(5, 218, 42, 1,
32, 96, 1, '10.0000', '+', 1, '+', '10.00000000', '+'),
(4, 217, 42, 5, 39,
92, 1, '4.0000', '+', 0, '+', '4.00000000', '+'),
(2, 217, 42, 5, 42, 200,
1, '2.0000', '+', 0, '+', '2.00000000', '+'),
(3, 217, 42, 5, 40, 300, 0,
'3.0000', '+', 0, '+', '3.00000000', '+'),
(8, 223, 42, 2, 23, 48, 1,
'10.0000', '+', 0, '+', '10.00000000', '+'),
(10, 223, 42, 2, 44, 2696, 1,
'30.0000', '+', 0, '+', '30.00000000', '+'),
(9, 223, 42, 2, 24, 194, 1,
'20.0000', '+', 0, '+', '20.00000000', '+'),
(11, 223, 42, 2, 45, 3998, 1,
'40.0000', '+', 0, '+', '40.00000000', '+'),
(12, 224, 35, 11, 46, 0, 1,
'5.0000', '+', 0, '+', '0.00000000', '+'),
(13, 224, 35, 11, 47, 10, 1,
'10.0000', '+', 0, '+', '0.00000000', '+'),
(14, 224, 35, 11, 48, 15, 1,
'15.0000', '+', 0, '+', '0.00000000', '+'),
(16, 226, 30, 5, 40, 5, 1,
'0.0000', '+', 0, '+', '0.00000000', '+'),
(15, 226, 30, 5, 39, 2, 1,
'0.0000', '+', 0, '+', '0.00000000', '+');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_recurring`
--
CREATE TABLE IF NOT EXISTS
`oc_product_recurring` (
`product_id` int(11) NOT NULL,
`recurring_id`
int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY
(`product_id`,`recurring_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_related`
--
CREATE TABLE IF NOT EXISTS
`oc_product_related` (
`product_id` int(11) NOT NULL,
`related_id`
int(11) NOT NULL,
PRIMARY KEY (`product_id`,`related_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_related`
--
INSERT INTO `oc_product_related` (`product_id`,
`related_id`) VALUES
(40, 42),
(41, 42),
(42, 40),
(42, 41);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_reward`
--
CREATE TABLE IF NOT EXISTS
`oc_product_reward` (
`product_reward_id` int(11) NOT NULL
AUTO_INCREMENT,
`product_id` int(11) NOT NULL DEFAULT '0',
`customer_group_id` int(11) NOT NULL DEFAULT '0',
`points` int(8) NOT
NULL DEFAULT '0',
PRIMARY KEY (`product_reward_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_reward`
--
INSERT INTO `oc_product_reward`
(`product_reward_id`, `product_id`, `customer_group_id`, `points`)
VALUES
(515, 42, 1, 100),
(519, 47, 1, 300),
(379, 28, 1, 400),
(329, 43,
1, 600),
(339, 29, 1, 0),
(343, 48, 1, 0),
(335, 40, 1, 0),
(539, 30, 1,
200),
(331, 44, 1, 700),
(333, 45, 1, 800),
(337, 31, 1, 0),
(425, 35, 1,
0),
(345, 33, 1, 0),
(347, 46, 1, 0),
(545, 41, 1, 0),
(351, 36, 1,
0),
(353, 34, 1, 0),
(355, 32, 1, 0),
(521, 49, 1, 1000);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_special`
--
CREATE TABLE IF NOT EXISTS
`oc_product_special` (
`product_special_id` int(11) NOT NULL
AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`customer_group_id`
int(11) NOT NULL,
`priority` int(5) NOT NULL DEFAULT '1',
`price`
decimal(15,4) NOT NULL DEFAULT '0.0000',
`date_start` date NOT NULL
DEFAULT '0000-00-00',
`date_end` date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`product_special_id`),
KEY `product_id` (`product_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_special`
--
INSERT INTO `oc_product_special`
(`product_special_id`, `product_id`, `customer_group_id`, `priority`,
`price`, `date_start`, `date_end`) VALUES
(419, 42, 1, 1, '90.0000',
'0000-00-00', '0000-00-00'),
(439, 30, 1, 2, '90.0000', '0000-00-00',
'0000-00-00'),
(438, 30, 1, 1, '80.0000', '0000-00-00', '0000-00-00');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_category`
--
CREATE TABLE IF NOT EXISTS
`oc_product_to_category` (
`product_id` int(11) NOT NULL,
`category_id`
int(11) NOT NULL,
PRIMARY KEY (`product_id`,`category_id`),
KEY
`category_id` (`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_product_to_category`
--
INSERT INTO `oc_product_to_category`
(`product_id`, `category_id`) VALUES
(28, 20),
(28, 24),
(29, 20),
(29,
24),
(30, 20),
(30, 33),
(31, 33),
(32, 34),
(33, 20),
(33, 28),
(34,
34),
(35, 20),
(36, 34),
(40, 20),
(40, 24),
(41, 27),
(42, 20),
(42,
28),
(43, 18),
(43, 20),
(44, 18),
(44, 20),
(45, 18),
(46, 18),
(46,
20),
(47, 18),
(47, 20),
(48, 20),
(48, 34),
(49, 57);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_download`
--
CREATE TABLE IF NOT EXISTS
`oc_product_to_download` (
`product_id` int(11) NOT NULL,
`download_id`
int(11) NOT NULL,
PRIMARY KEY (`product_id`,`download_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_layout`
--
CREATE TABLE IF NOT EXISTS
`oc_product_to_layout` (
`product_id` int(11) NOT NULL,
`store_id`
int(11) NOT NULL,
`layout_id` int(11) NOT NULL,
PRIMARY KEY
(`product_id`,`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_product_to_store`
--
CREATE TABLE IF NOT EXISTS
`oc_product_to_store` (
`product_id` int(11) NOT NULL,
`store_id`
int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`product_id`,`store_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_product_to_store`
--
INSERT INTO `oc_product_to_store`
(`product_id`, `store_id`) VALUES
(28, 0),
(29, 0),
(30, 0),
(31, 0),
(32,
0),
(33, 0),
(34, 0),
(35, 0),
(36, 0),
(40, 0),
(41, 0),
(42, 0),
(43,
0),
(44, 0),
(45, 0),
(46, 0),
(47, 0),
(48, 0),
(49, 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_recurring`
--
CREATE TABLE IF NOT EXISTS
`oc_recurring` (
`recurring_id` int(11) NOT NULL AUTO_INCREMENT,
`price` decimal(10,4) NOT NULL,
`frequency`
enum('day','week','semi_month','month','year') NOT NULL,
`duration`
int(10) unsigned NOT NULL,
`cycle` int(10) unsigned NOT NULL,
`trial_status` tinyint(4) NOT NULL,
`trial_price` decimal(10,4) NOT
NULL,
`trial_frequency` enum('day','week','semi_month','month','year')
NOT NULL,
`trial_duration` int(10) unsigned NOT NULL,
`trial_cycle`
int(10) unsigned NOT NULL,
`status` tinyint(4) NOT NULL,
`sort_order`
int(11) NOT NULL,
PRIMARY KEY (`recurring_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_recurring_description`
--
CREATE TABLE IF NOT
EXISTS `oc_recurring_description` (
`recurring_id` int(11) NOT NULL,
`language_id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY
KEY (`recurring_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return`
--
CREATE TABLE IF NOT EXISTS `oc_return`
(
`return_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT
NULL,
`product_id` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`telephone` varchar(32) NOT NULL,
`product` varchar(255) NOT NULL,
`model` varchar(64) NOT NULL,
`quantity` int(4) NOT NULL,
`opened` tinyint(1) NOT NULL,
`return_reason_id` int(11) NOT NULL,
`return_action_id` int(11) NOT
NULL,
`return_status_id` int(11) NOT NULL,
`comment` text,
`date_ordered` date NOT NULL DEFAULT '0000-00-00',
`date_added` datetime
NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY
(`return_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_action`
--
CREATE TABLE IF NOT EXISTS
`oc_return_action` (
`return_action_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(64) NOT
NULL,
PRIMARY KEY (`return_action_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_action`
--
INSERT INTO `oc_return_action` (`return_action_id`,
`language_id`, `name`) VALUES
(1, 1, 'Возвращены
средства'),
(2, 1, 'Выдан в кредит'),
(3, 1,
'Отправлен другой товар для замены');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_history`
--
CREATE TABLE IF NOT EXISTS
`oc_return_history` (
`return_history_id` int(11) NOT NULL
AUTO_INCREMENT,
`return_id` int(11) NOT NULL,
`return_status_id`
int(11) NOT NULL,
`notify` tinyint(1) NOT NULL,
`comment` text NOT
NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY
(`return_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_reason`
--
CREATE TABLE IF NOT EXISTS
`oc_return_reason` (
`return_reason_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(128) NOT
NULL,
PRIMARY KEY (`return_reason_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_reason`
--
INSERT INTO `oc_return_reason` (`return_reason_id`,
`language_id`, `name`) VALUES
(1, 1, 'Получен/доставлен
неисправным (сломан)'),
(2, 1, 'Получен не тот
(ошибочный) товар'),
(4, 1, 'Ошибка,
пожалуйста укажите/приложите
подробности'),
(5, 1, 'Другое (другая
причина), пожалуйста укажите/приложите
подробности');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_return_status`
--
CREATE TABLE IF NOT EXISTS
`oc_return_status` (
`return_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(32) NOT
NULL,
PRIMARY KEY (`return_status_id`,`language_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_return_status`
--
INSERT INTO `oc_return_status` (`return_status_id`,
`language_id`, `name`) VALUES
(1, 1, 'Рассматриваемый
'),
(3, 1, 'Готов (к отправке) '),
(2, 1, 'Заказ в
ожидании ');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_review`
--
CREATE TABLE IF NOT EXISTS `oc_review`
(
`review_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT
NULL,
`customer_id` int(11) NOT NULL,
`author` varchar(64) NOT NULL,
`text` text NOT NULL,
`rating` int(1) NOT NULL,
`status` tinyint(1) NOT
NULL DEFAULT '0',
`date_added` datetime NOT NULL,
`date_modified`
datetime NOT NULL,
PRIMARY KEY (`review_id`),
KEY `product_id`
(`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_setting`
--
CREATE TABLE IF NOT EXISTS
`oc_setting` (
`setting_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id`
int(11) NOT NULL DEFAULT '0',
`code` varchar(32) NOT NULL,
`key`
varchar(64) NOT NULL,
`value` text NOT NULL,
`serialized` tinyint(1)
NOT NULL,
PRIMARY KEY (`setting_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_setting`
--
INSERT INTO `oc_setting` (`setting_id`, `store_id`,
`code`, `key`, `value`, `serialized`) VALUES
(1, 0, 'shipping',
'shipping_sort_order', '3', 0),
(2, 0, 'sub_total', 'sub_total_sort_order',
'1', 0),
(3, 0, 'sub_total', 'sub_total_status', '1', 0),
(5, 0, 'total',
'total_sort_order', '9', 0),
(6, 0, 'total', 'total_status', '1', 0),
(8,
0, 'free_checkout', 'free_checkout_sort_order', '1', 0),
(9, 0, 'cod',
'cod_sort_order', '5', 0),
(10, 0, 'cod', 'cod_total', '0.01', 0),
(11, 0,
'cod', 'cod_order_status_id', '1', 0),
(12, 0, 'cod', 'cod_geo_zone_id',
'0', 0),
(13, 0, 'cod', 'cod_status', '1', 0),
(14, 0, 'shipping',
'shipping_status', '1', 0),
(15, 0, 'shipping', 'shipping_estimator', '1',
0),
(27, 0, 'coupon', 'coupon_sort_order', '4', 0),
(28, 0, 'coupon',
'coupon_status', '1', 0),
(34, 0, 'flat', 'flat_sort_order', '1', 0),
(35,
0, 'flat', 'flat_status', '1', 0),
(36, 0, 'flat', 'flat_geo_zone_id', '0',
0),
(37, 0, 'flat', 'flat_tax_class_id', '0', 0),
(41, 0, 'flat',
'flat_cost', '5.00', 0),
(42, 0, 'credit', 'credit_sort_order', '7',
0),
(43, 0, 'credit', 'credit_status', '1', 0),
(53, 0, 'reward',
'reward_sort_order', '2', 0),
(54, 0, 'reward', 'reward_status', '1',
0),
(146, 0, 'category', 'category_status', '1', 0),
(158, 0, 'account',
'account_status', '1', 0),
(159, 0, 'affiliate', 'affiliate_status', '1',
0),
(267, 0, 'config', 'config_robots',
'abot\r\ndbot\r\nebot\r\nhbot\r\nkbot\r\nlbot\r\nmbot\r\nnbot\r\nobot\r\npbot\r\nrbot\r\nsbot\r\ntbot\r\nvbot\r\nybot\r\nzbot\r\nbot.\r\nbot/\r\n_bot\r\n.bot\r\n/bot\r\n-bot\r\n:bot\r\n(bot\r\ncrawl\r\nslurp\r\nspider\r\nseek\r\naccoona\r\nacoon\r\nadressendeutschland\r\nah-ha.com\r\nahoy\r\naltavista\r\nananzi\r\nanthill\r\nappie\r\narachnophilia\r\narale\r\naraneo\r\naranha\r\narchitext\r\naretha\r\narks\r\nasterias\r\natlocal\r\natn\r\natomz\r\naugurfind\r\nbackrub\r\nbannana_bot\r\nbaypup\r\nbdfetch\r\nbig
brother\r\nbiglotron\r\nbjaaland\r\nblackwidow\r\nblaiz\r\nblog\r\nblo.\r\nbloodhound\r\nboitho\r\nbooch\r\nbradley\r\nbutterfly\r\ncalif\r\ncassandra\r\nccubee\r\ncfetch\r\ncharlotte\r\nchurl\r\ncienciaficcion\r\ncmc\r\ncollective\r\ncomagent\r\ncombine\r\ncomputingsite\r\ncsci\r\ncurl\r\ncusco\r\ndaumoa\r\ndeepindex\r\ndelorie\r\ndepspid\r\ndeweb\r\ndie
blinde kuh\r\ndigger\r\nditto\r\ndmoz\r\ndocomo\r\ndownload
express\r\ndtaagent\r\ndwcp\r\nebiness\r\nebingbong\r\ne-collector\r\nejupiter\r\nemacs-w3
search engine\r\nesther\r\nevliya celebi\r\nezresult\r\nfalcon\r\nfelix
ide\r\nferret\r\nfetchrover\r\nfido\r\nfindlinks\r\nfireball\r\nfish
search\r\nfouineur\r\nfunnelweb\r\ngazz\r\ngcreep\r\ngenieknows\r\ngetterroboplus\r\ngeturl\r\nglx\r\ngoforit\r\ngolem\r\ngrabber\r\ngrapnel\r\ngralon\r\ngriffon\r\ngromit\r\ngrub\r\ngulliver\r\nhamahakki\r\nharvest\r\nhavindex\r\nhelix\r\nheritrix\r\nhku
www octopus\r\nhomerweb\r\nhtdig\r\nhtml
index\r\nhtml_analyzer\r\nhtmlgobble\r\nhubater\r\nhyper-decontextualizer\r\nia_archiver\r\nibm_planetwide\r\nichiro\r\niconsurf\r\niltrovatore\r\nimage.kapsi.net\r\nimagelock\r\nincywincy\r\nindexer\r\ninfobee\r\ninformant\r\ningrid\r\ninktomisearch.com\r\ninspector
web\r\nintelliagent\r\ninternet
shinchakubin\r\nip3000\r\niron33\r\nisraeli-search\r\nivia\r\njack\r\njakarta\r\njavabee\r\njetbot\r\njumpstation\r\nkatipo\r\nkdd-explorer\r\nkilroy\r\nknowledge\r\nkototoi\r\nkretrieve\r\nlabelgrabber\r\nlachesis\r\nlarbin\r\nlegs\r\nlibwww\r\nlinkalarm\r\nlink
validator\r\nlinkscan\r\nlockon\r\nlwp\r\nlycos\r\nmagpie\r\nmantraagent\r\nmapoftheinternet\r\nmarvin/\r\nmattie\r\nmediafox\r\nmediapartners\r\nmercator\r\nmerzscope\r\nmicrosoft
url
control\r\nminirank\r\nmiva\r\nmj12\r\nmnogosearch\r\nmoget\r\nmonster\r\nmoose\r\nmotor\r\nmultitext\r\nmuncher\r\nmuscatferret\r\nmwd.search\r\nmyweb\r\nnajdi\r\nnameprotect\r\nnationaldirectory\r\nnazilla\r\nncsa
beta\r\nnec-meshexplorer\r\nnederland.zoek\r\nnetcarta webmap
engine\r\nnetmechanic\r\nnetresearchserver\r\nnetscoop\r\nnewscan-online\r\nnhse\r\nnokia6682/\r\nnomad\r\nnoyona\r\nnutch\r\nnzexplorer\r\nobjectssearch\r\noccam\r\nomni\r\nopen
text\r\nopenfind\r\nopenintelligencedata\r\norb
search\r\nosis-project\r\npack
rat\r\npageboy\r\npagebull\r\npage_verifier\r\npanscient\r\nparasite\r\npartnersite\r\npatric\r\npear.\r\npegasus\r\nperegrinator\r\npgp
key
agent\r\nphantom\r\nphpdig\r\npicosearch\r\npiltdownman\r\npimptrain\r\npinpoint\r\npioneer\r\npiranha\r\nplumtreewebaccessor\r\npogodak\r\npoirot\r\npompos\r\npoppelsdorf\r\npoppi\r\npopular
iconoclast\r\npsycheclone\r\npublisher\r\npython\r\nrambler\r\nraven
search\r\nroach\r\nroad
runner\r\nroadhouse\r\nrobbie\r\nrobofox\r\nrobozilla\r\nrules\r\nsalty\r\nsbider\r\nscooter\r\nscoutjet\r\nscrubby\r\nsearch.\r\nsearchprocess\r\nsemanticdiscovery\r\nsenrigan\r\nsg-scout\r\nshai''hulud\r\nshark\r\nshopwiki\r\nsidewinder\r\nsift\r\nsilk\r\nsimmany\r\nsite
searcher\r\nsite
valet\r\nsitetech-rover\r\nskymob.com\r\nsleek\r\nsmartwit\r\nsna-\r\nsnappy\r\nsnooper\r\nsohu\r\nspeedfind\r\nsphere\r\nsphider\r\nspinner\r\nspyder\r\nsteeler/\r\nsuke\r\nsuntek\r\nsupersnooper\r\nsurfnomore\r\nsven\r\nsygol\r\nszukacz\r\ntach
black
widow\r\ntarantula\r\ntempleton\r\n/teoma\r\nt-h-u-n-d-e-r-s-t-o-n-e\r\ntheophrastus\r\ntitan\r\ntitin\r\ntkwww\r\ntoutatis\r\nt-rex\r\ntutorgig\r\ntwiceler\r\ntwisted\r\nucsd\r\nudmsearch\r\nurl
check\r\nupdated\r\nvagabondo\r\nvalkyrie\r\nverticrawl\r\nvictoria\r\nvision-search\r\nvolcano\r\nvoyager/\r\nvoyager-hc\r\nw3c_validator\r\nw3m2\r\nw3mir\r\nwalker\r\nwallpaper\r\nwanderer\r\nwauuu\r\nwavefire\r\nweb
core\r\nweb hopper\r\nweb
wombat\r\nwebbandit\r\nwebcatcher\r\nwebcopy\r\nwebfoot\r\nweblayers\r\nweblinker\r\nweblog
monitor\r\nwebmirror\r\nwebmonkey\r\nwebquest\r\nwebreaper\r\nwebsitepulse\r\nwebsnarf\r\nwebstolperer\r\nwebvac\r\nwebwalk\r\nwebwatch\r\nwebwombat\r\nwebzinger\r\nwhizbang\r\nwhowhere\r\nwild
ferret\r\nworldlight\r\nwwwc\r\nwwwster\r\nxenu\r\nxget\r\nxift\r\nxirq\r\nyandex\r\nyanga\r\nyeti\r\nyodao\r\nzao\r\nzippp\r\nzyborg',
0),
(266, 0, 'config', 'config_shared', '0', 0),
(265, 0, 'config',
'config_secure', '0', 0),
(264, 0, 'config', 'config_fraud_status_id', '7',
0),
(263, 0, 'config', 'config_fraud_score', '', 0),
(262, 0, 'config',
'config_fraud_key', '', 0),
(94, 0, 'voucher', 'voucher_sort_order', '8',
0),
(95, 0, 'voucher', 'voucher_status', '1', 0),
(261, 0, 'config',
'config_fraud_detection', '0', 0),
(260, 0, 'config', 'config_mail_alert',
'', 0),
(103, 0, 'free_checkout', 'free_checkout_status', '1', 0),
(104, 0,
'free_checkout', 'free_checkout_order_status_id', '1', 0),
(259, 0,
'config', 'config_mail',
'a:7:{s:8:"protocol";s:4:"mail";s:9:"parameter";s:0:"";s:13:"smtp_hostname";s:0:"";s:13:"smtp_username";s:0:"";s:13:"smtp_password";s:0:"";s:9:"smtp_port";s:0:"";s:12:"smtp_timeout";s:0:"";}',
1),
(258, 0, 'config', 'config_ftp_status', '0', 0),
(257, 0, 'config',
'config_ftp_root', '', 0),
(256, 0, 'config', 'config_ftp_password', '',
0),
(255, 0, 'config', 'config_ftp_username', '', 0),
(254, 0, 'config',
'config_ftp_port', '21', 0),
(253, 0, 'config', 'config_ftp_hostname', '',
0),
(252, 0, 'config', 'config_image_location_height', '50', 0),
(251, 0,
'config', 'config_image_location_width', '268', 0),
(250, 0, 'config',
'config_image_cart_height', '47', 0),
(249, 0, 'config',
'config_image_cart_width', '47', 0),
(248, 0, 'config',
'config_image_wishlist_height', '47', 0),
(181, 0, 'config',
'config_meta_title', 'Интернет магазин Opencart
"Русская сборка"', 0),
(182, 0, 'config',
'config_meta_description', 'Мой магазин', 0),
(183, 0, 'config',
'config_meta_keyword', '', 0),
(184, 0, 'config', 'config_template',
'default', 0),
(185, 0, 'config', 'config_layout_id', '4', 0),
(186, 0,
'config', 'config_country_id', '176', 0),
(187, 0, 'config',
'config_zone_id', '', 0),
(188, 0, 'config', 'config_language', 'ru',
0),
(189, 0, 'config', 'config_admin_language', 'ru', 0),
(190, 0,
'config', 'config_currency', 'RUB', 0),
(191, 0, 'config',
'config_currency_auto', '1', 0),
(192, 0, 'config',
'config_length_class_id', '1', 0),
(193, 0, 'config',
'config_weight_class_id', '1', 0),
(194, 0, 'config',
'config_product_count', '1', 0),
(195, 0, 'config', 'config_product_limit',
'15', 0),
(196, 0, 'config', 'config_product_description_length', '100',
0),
(197, 0, 'config', 'config_limit_admin', '20', 0),
(198, 0, 'config',
'config_review_status', '1', 0),
(199, 0, 'config', 'config_review_guest',
'1', 0),
(200, 0, 'config', 'config_review_mail', '0', 0),
(201, 0,
'config', 'config_voucher_min', '1', 0),
(202, 0, 'config',
'config_voucher_max', '1000', 0),
(203, 0, 'config', 'config_tax', '0',
0),
(204, 0, 'config', 'config_tax_default', 'shipping', 0),
(205, 0,
'config', 'config_tax_customer', 'shipping', 0),
(206, 0, 'config',
'config_customer_online', '0', 0),
(207, 0, 'config',
'config_customer_group_id', '1', 0),
(208, 0, 'config',
'config_customer_group_display', 'a:1:{i:0;s:1:"1";}', 1),
(209,
0, 'config', 'config_customer_price', '0', 0),
(210, 0, 'config',
'config_account_id', '3', 0),
(211, 0, 'config', 'config_account_mail',
'0', 0),
(212, 0, 'config', 'config_invoice_prefix', 'INV-2015-00',
0),
(213, 0, 'config', 'config_api_id', '1', 0),
(214, 0, 'config',
'config_cart_weight', '1', 0),
(215, 0, 'config', 'config_checkout_guest',
'1', 0),
(216, 0, 'config', 'config_checkout_id', '5', 0),
(217, 0,
'config', 'config_order_status_id', '1', 0),
(218, 0, 'config',
'config_processing_status', 'a:1:{i:0;s:1:"2";}', 1),
(219, 0,
'config', 'config_complete_status', 'a:1:{i:0;s:1:"5";}',
1),
(220, 0, 'config', 'config_order_mail', '1', 0),
(221, 0, 'config',
'config_stock_display', '0', 0),
(222, 0, 'config', 'config_stock_warning',
'0', 0),
(223, 0, 'config', 'config_stock_checkout', '0', 0),
(224, 0,
'config', 'config_affiliate_approval', '0', 0),
(225, 0, 'config',
'config_affiliate_auto', '0', 0),
(226, 0, 'config',
'config_affiliate_commission', '5', 0),
(227, 0, 'config',
'config_affiliate_id', '4', 0),
(228, 0, 'config', 'config_affiliate_mail',
'0', 0),
(229, 0, 'config', 'config_return_id', '0', 0),
(230, 0, 'config',
'config_return_status_id', '2', 0),
(231, 0, 'config', 'config_logo',
'catalog/logo.png', 0),
(232, 0, 'config', 'config_icon',
'catalog/cart.png', 0),
(233, 0, 'config', 'config_image_category_width',
'80', 0),
(234, 0, 'config', 'config_image_category_height', '80',
0),
(235, 0, 'config', 'config_image_thumb_width', '228', 0),
(236, 0,
'config', 'config_image_thumb_height', '228', 0),
(237, 0, 'config',
'config_image_popup_width', '500', 0),
(238, 0, 'config',
'config_image_popup_height', '500', 0),
(239, 0, 'config',
'config_image_product_width', '228', 0),
(240, 0, 'config',
'config_image_product_height', '228', 0),
(241, 0, 'config',
'config_image_additional_width', '74', 0),
(242, 0, 'config',
'config_image_additional_height', '74', 0),
(243, 0, 'config',
'config_image_related_width', '80', 0),
(244, 0, 'config',
'config_image_related_height', '80', 0),
(245, 0, 'config',
'config_image_compare_width', '90', 0),
(246, 0, 'config',
'config_image_compare_height', '90', 0),
(247, 0, 'config',
'config_image_wishlist_width', '47', 0),
(180, 0, 'config',
'config_comment', '', 0),
(179, 0, 'config', 'config_open', '', 0),
(178,
0, 'config', 'config_image', '', 0),
(177, 0, 'config', 'config_fax', '495
888-88-88', 0),
(176, 0, 'config', 'config_telephone', '495 999-99-99',
0),
(175, 0, 'config', 'config_email', 'demo@opencart.com', 0),
(174, 0,
'config', 'config_geocode', '', 0),
(172, 0, 'config', 'config_owner',
'Иванов Иван', 0),
(173, 0, 'config', 'config_address', 'г.
Москва, ул. Ленина 10 оф. 32', 0),
(171, 0, 'config',
'config_name', 'Интернет магазин Opencart
"Русская сборка"', 0),
(268, 0, 'config',
'config_seo_url', '0', 0),
(269, 0, 'config', 'config_file_max_size',
'300000', 0),
(270, 0, 'config', 'config_file_ext_allowed',
'zip\r\ntxt\r\npng\r\njpe\r\njpeg\r\njpg\r\ngif\r\nbmp\r\nico\r\ntiff\r\ntif\r\nsvg\r\nsvgz\r\nzip\r\nrar\r\nmsi\r\ncab\r\nmp3\r\nqt\r\nmov\r\npdf\r\npsd\r\nai\r\neps\r\nps\r\ndoc',
0),
(271, 0, 'config', 'config_file_mime_allowed',
'text/plain\r\nimage/png\r\nimage/jpeg\r\nimage/gif\r\nimage/bmp\r\nimage/tiff\r\nimage/svg+xml\r\napplication/zip\r\n"application/zip"\r\napplication/x-zip\r\n"application/x-zip"\r\napplication/x-zip-compressed\r\n"application/x-zip-compressed"\r\napplication/rar\r\n"application/rar"\r\napplication/x-rar\r\n"application/x-rar"\r\napplication/x-rar-compressed\r\n"application/x-rar-compressed"\r\napplication/octet-stream\r\n"application/octet-stream"\r\naudio/mpeg\r\nvideo/quicktime\r\napplication/pdf',
0),
(272, 0, 'config', 'config_maintenance', '0', 0),
(273, 0, 'config',
'config_password', '1', 0),
(274, 0, 'config', 'config_encryption',
'87431d38e7edce36d5153707d4cd2bf9', 0),
(275, 0, 'config',
'config_compression', '0', 0),
(276, 0, 'config', 'config_error_display',
'1', 0),
(277, 0, 'config', 'config_error_log', '1', 0),
(278, 0, 'config',
'config_error_filename', 'error.log', 0),
(279, 0, 'config',
'config_google_analytics', '', 0);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_stock_status`
--
CREATE TABLE IF NOT EXISTS
`oc_stock_status` (
`stock_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY
KEY (`stock_status_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_stock_status`
--
INSERT INTO `oc_stock_status` (`stock_status_id`,
`language_id`, `name`) VALUES
(7, 1, 'В наличии'),
(8, 1,
'Предзаказ'),
(5, 1, 'Нет в наличии'),
(6, 1,
'Ожидание 2-3 дня');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_store`
--
CREATE TABLE IF NOT EXISTS `oc_store` (
`store_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT
NULL,
`url` varchar(255) NOT NULL,
`ssl` varchar(255) NOT NULL,
PRIMARY KEY (`store_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_class`
--
CREATE TABLE IF NOT EXISTS
`oc_tax_class` (
`tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(32) NOT NULL,
`description` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_class`
--
INSERT INTO `oc_tax_class` (`tax_class_id`, `title`,
`description`, `date_added`, `date_modified`) VALUES
(9, 'Налоги',
'Облагаемые налогом', '2014-06-06 23:00:00', '2014-09-09
11:50:31');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rate`
--
CREATE TABLE IF NOT EXISTS
`oc_tax_rate` (
`tax_rate_id` int(11) NOT NULL AUTO_INCREMENT,
`geo_zone_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(32) NOT NULL,
`rate` decimal(15,4) NOT NULL DEFAULT '0.0000',
`type` char(1) NOT
NULL,
`date_added` datetime NOT NULL,
`date_modified` datetime NOT
NULL,
PRIMARY KEY (`tax_rate_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_rate`
--
INSERT INTO `oc_tax_rate` (`tax_rate_id`, `geo_zone_id`,
`name`, `rate`, `type`, `date_added`, `date_modified`) VALUES
(87, 3,
'НДС', '18.0000', 'F', '2011-09-21 21:49:23', '2014-09-09
11:49:32');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rate_to_customer_group`
--
CREATE TABLE IF NOT
EXISTS `oc_tax_rate_to_customer_group` (
`tax_rate_id` int(11) NOT NULL,
`customer_group_id` int(11) NOT NULL,
PRIMARY KEY
(`tax_rate_id`,`customer_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_rate_to_customer_group`
--
INSERT INTO
`oc_tax_rate_to_customer_group` (`tax_rate_id`, `customer_group_id`)
VALUES
(86, 1),
(87, 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_tax_rule`
--
CREATE TABLE IF NOT EXISTS
`oc_tax_rule` (
`tax_rule_id` int(11) NOT NULL AUTO_INCREMENT,
`tax_class_id` int(11) NOT NULL,
`tax_rate_id` int(11) NOT NULL,
`based` varchar(10) NOT NULL,
`priority` int(5) NOT NULL DEFAULT '1',
PRIMARY KEY (`tax_rule_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_tax_rule`
--
INSERT INTO `oc_tax_rule` (`tax_rule_id`, `tax_class_id`,
`tax_rate_id`, `based`, `priority`) VALUES
(121, 10, 86, 'payment',
1),
(120, 10, 87, 'store', 0),
(127, 9, 87, 'shipping', 2);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_upload`
--
CREATE TABLE IF NOT EXISTS `oc_upload`
(
`upload_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT
NULL,
`filename` varchar(255) NOT NULL,
`code` varchar(255) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`upload_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_url_alias`
--
CREATE TABLE IF NOT EXISTS
`oc_url_alias` (
`url_alias_id` int(11) NOT NULL AUTO_INCREMENT,
`query` varchar(255) NOT NULL,
`keyword` varchar(255) NOT NULL,
PRIMARY KEY (`url_alias_id`),
KEY `query` (`query`),
KEY `keyword`
(`keyword`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_url_alias`
--
INSERT INTO `oc_url_alias` (`url_alias_id`, `query`,
`keyword`) VALUES
(824, 'product_id=48', 'ipod-classic'),
(836,
'category_id=20', 'desktops'),
(834, 'category_id=26', 'pc'),
(835,
'category_id=27', 'mac'),
(730, 'manufacturer_id=8', 'apple'),
(772,
'information_id=4', 'about_us'),
(768, 'product_id=42', 'test'),
(789,
'category_id=34', 'mp3-players'),
(781, 'category_id=36', 'test2'),
(774,
'category_id=18', 'laptop-notebook'),
(775, 'category_id=46',
'macs'),
(776, 'category_id=45', 'windows'),
(777, 'category_id=25',
'component'),
(778, 'category_id=29', 'mouse'),
(779, 'category_id=28',
'monitor'),
(780, 'category_id=35', 'test1'),
(782, 'category_id=30',
'printer'),
(783, 'category_id=31', 'scanner'),
(784, 'category_id=32',
'web-camera'),
(785, 'category_id=57', 'tablet'),
(786, 'category_id=17',
'software'),
(787, 'category_id=24', 'smartphone'),
(788, 'category_id=33',
'camera'),
(790, 'category_id=43', 'test11'),
(791, 'category_id=44',
'test12'),
(792, 'category_id=47', 'test15'),
(793, 'category_id=48',
'test16'),
(794, 'category_id=49', 'test17'),
(795, 'category_id=50',
'test18'),
(796, 'category_id=51', 'test19'),
(797, 'category_id=52',
'test20'),
(798, 'category_id=58', 'test25'),
(799, 'category_id=53',
'test21'),
(800, 'category_id=54', 'test22'),
(801, 'category_id=55',
'test23'),
(802, 'category_id=56', 'test24'),
(803, 'category_id=38',
'test4'),
(804, 'category_id=37', 'test5'),
(805, 'category_id=39',
'test6'),
(806, 'category_id=40', 'test7'),
(807, 'category_id=41',
'test8'),
(808, 'category_id=42', 'test9'),
(809, 'product_id=30',
'canon-eos-5d'),
(840, 'product_id=47', 'hp-lp3065'),
(811,
'product_id=28', 'htc-touch-hd'),
(812, 'product_id=43', 'macbook'),
(813,
'product_id=44', 'macbook-air'),
(814, 'product_id=45',
'macbook-pro'),
(816, 'product_id=31', 'nikon-d300'),
(817,
'product_id=29', 'palm-treo-pro'),
(818, 'product_id=35',
'product-8'),
(819, 'product_id=49', 'samsung-galaxy-tab-10-1'),
(820,
'product_id=33', 'samsung-syncmaster-941bw'),
(821, 'product_id=46',
'sony-vaio'),
(837, 'product_id=41', 'imac'),
(823, 'product_id=40',
'iphone'),
(825, 'product_id=36', 'ipod-nano'),
(826, 'product_id=34',
'ipod-shuffle'),
(827, 'product_id=32', 'ipod-touch'),
(828,
'manufacturer_id=9', 'canon'),
(829, 'manufacturer_id=5', 'htc'),
(830,
'manufacturer_id=7', 'hewlett-packard'),
(831, 'manufacturer_id=6',
'palm'),
(832, 'manufacturer_id=10', 'sony'),
(841, 'information_id=6',
'delivery'),
(842, 'information_id=3', 'privacy'),
(843,
'information_id=5', 'terms'),
(845,'common/home',
''),
(846,'information/contact', 'contact-us'),
(847,'information/sitemap',
'sitemap'),
(848,'product/special',
'specials'),
(849,'product/manufacturer',
'brands'),
(850,'product/compare',
'compare-products'),
(851,'product/search',
'search'),
(852,'checkout/cart', 'cart'),
(853,'checkout/checkout',
'checkout'),
(854,'account/login', 'login'),
(855,'account/logout',
'logout'),
(856,'account/voucher', 'vouchers'),
(857,'account/wishlist',
'wishlist'),
(858,'account/account', 'my-account'),
(859,'account/order',
'order-history'),
(860,'account/newsletter',
'newsletter'),
(861,'account/return/add',
'return-add'),
(862,'account/forgotten',
'forgot-password'),
(863,'account/download',
'downloads'),
(864,'account/return',
'returns'),
(865,'account/transaction',
'transactions'),
(866,'account/register',
'create-account'),
(867,'account/recurring',
'recurring'),
(868,'account/address',
'address-book'),
(869,'account/reward',
'reward-points'),
(870,'account/edit',
'edit-account'),
(871,'account/password',
'change-password'),
(880,'affiliate/forgotten',
'affiliate-forgot-password'),
(881,'affiliate/register',
'create-affiliate-account'),
(882,'affiliate/login',
'affiliate-login'),
(883,'affiliate/payment',
'affiliate-payment'),
(884,'affiliate/tracking',
'affiliate-tracking'),
(885,'affiliate/transaction',
'affiliate-transaction'),
(886,'affiliate/account', 'affiliates');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_user`
--
CREATE TABLE IF NOT EXISTS `oc_user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`user_group_id` int(11) NOT
NULL,
`username` varchar(20) NOT NULL,
`password` varchar(40) NOT
NULL,
`salt` varchar(9) NOT NULL,
`firstname` varchar(32) NOT NULL,
`lastname` varchar(32) NOT NULL,
`email` varchar(96) NOT NULL,
`image`
varchar(255) NOT NULL,
`code` varchar(40) NOT NULL,
`ip` varchar(40)
NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT
NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_user_group`
--
CREATE TABLE IF NOT EXISTS
`oc_user_group` (
`user_group_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
`permission` text NOT NULL,
PRIMARY KEY
(`user_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_user_group`
--
INSERT INTO `oc_user_group` (`user_group_id`, `name`,
`permission`) VALUES
(1, 'Administrator',
'a:2:{s:6:"access";a:181:{i:0;s:17:"catalog/attribute";i:1;s:23:"catalog/attribute_group";i:2;s:16:"catalog/category";i:3;s:16:"catalog/download";i:4;s:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:17:"catalog/recurring";i:10;s:14:"catalog/review";i:11;s:18:"common/column_left";i:12;s:18:"common/filemanager";i:13;s:11:"common/menu";i:14;s:14:"common/profile";i:15;s:12:"common/stats";i:16;s:18:"dashboard/activity";i:17;s:15:"dashboard/chart";i:18;s:18:"dashboard/customer";i:19;s:13:"dashboard/map";i:20;s:16:"dashboard/online";i:21;s:15:"dashboard/order";i:22;s:16:"dashboard/recent";i:23;s:14:"dashboard/sale";i:24;s:13:"design/banner";i:25;s:13:"design/layout";i:26;s:14:"extension/feed";i:27;s:19:"extension/installer";i:28;s:22:"extension/modification";i:29;s:16:"extension/module";i:30;s:17:"extension/openbay";i:31;s:17:"extension/payment";i:32;s:18:"extension/shipping";i:33;s:15:"extension/total";i:34;s:16:"feed/google_base";i:35;s:19:"feed/google_sitemap";i:36;s:15:"feed/openbaypro";i:37;s:20:"localisation/country";i:38;s:21:"localisation/currency";i:39;s:21:"localisation/geo_zone";i:40;s:21:"localisation/language";i:41;s:25:"localisation/length_class";i:42;s:21:"localisation/location";i:43;s:25:"localisation/order_status";i:44;s:26:"localisation/return_action";i:45;s:26:"localisation/return_reason";i:46;s:26:"localisation/return_status";i:47;s:25:"localisation/stock_status";i:48;s:22:"localisation/tax_class";i:49;s:21:"localisation/tax_rate";i:50;s:25:"localisation/weight_class";i:51;s:17:"localisation/zone";i:52;s:19:"marketing/affiliate";i:53;s:17:"marketing/contact";i:54;s:16:"marketing/coupon";i:55;s:19:"marketing/marketing";i:56;s:14:"module/account";i:57;s:16:"module/affiliate";i:58;s:20:"module/amazon_button";i:59;s:13:"module/banner";i:60;s:17:"module/bestseller";i:61;s:15:"module/carousel";i:62;s:15:"module/category";i:63;s:11:"module/ebay";i:64;s:15:"module/featured";i:65;s:13:"module/filter";i:66;s:22:"module/google_hangouts";i:67;s:11:"module/html";i:68;s:18:"module/information";i:69;s:13:"module/latest";i:70;s:16:"module/pp_button";i:71;s:15:"module/pp_login";i:72;s:16:"module/slideshow";i:73;s:14:"module/special";i:74;s:12:"module/store";i:75;s:14:"openbay/amazon";i:76;s:22:"openbay/amazon_listing";i:77;s:22:"openbay/amazon_product";i:78;s:16:"openbay/amazonus";i:79;s:24:"openbay/amazonus_listing";i:80;s:24:"openbay/amazonus_product";i:81;s:12:"openbay/ebay";i:82;s:20:"openbay/ebay_profile";i:83;s:21:"openbay/ebay_template";i:84;s:12:"openbay/etsy";i:85;s:20:"openbay/etsy_product";i:86;s:21:"openbay/etsy_shipping";i:87;s:17:"openbay/etsy_shop";i:88;s:23:"payment/amazon_checkout";i:89;s:24:"payment/authorizenet_aim";i:90;s:24:"payment/authorizenet_sim";i:91;s:21:"payment/bank_transfer";i:92;s:22:"payment/bluepay_hosted";i:93;s:24:"payment/bluepay_redirect";i:94;s:14:"payment/cheque";i:95;s:11:"payment/cod";i:96;s:17:"payment/firstdata";i:97;s:24:"payment/firstdata_remote";i:98;s:21:"payment/free_checkout";i:99;s:22:"payment/klarna_account";i:100;s:22:"payment/klarna_invoice";i:101;s:14:"payment/liqpay";i:102;s:14:"payment/nochex";i:103;s:15:"payment/paymate";i:104;s:16:"payment/paypoint";i:105;s:13:"payment/payza";i:106;s:26:"payment/perpetual_payments";i:107;s:18:"payment/pp_express";i:108;s:18:"payment/pp_payflow";i:109;s:25:"payment/pp_payflow_iframe";i:110;s:14:"payment/pp_pro";i:111;s:21:"payment/pp_pro_iframe";i:112;s:19:"payment/pp_standard";i:113;s:14:"payment/realex";i:114;s:21:"payment/realex_remote";i:115;s:22:"payment/sagepay_direct";i:116;s:22:"payment/sagepay_server";i:117;s:18:"payment/sagepay_us";i:118;s:24:"payment/securetrading_pp";i:119;s:24:"payment/securetrading_ws";i:120;s:14:"payment/skrill";i:121;s:19:"payment/twocheckout";i:122;s:28:"payment/web_payment_software";i:123;s:16:"payment/worldpay";i:124;s:16:"report/affiliate";i:125;s:25:"report/affiliate_activity";i:126;s:22:"report/affiliate_login";i:127;s:24:"report/customer_activity";i:128;s:22:"report/customer_credit";i:129;s:21:"report/customer_login";i:130;s:22:"report/customer_online";i:131;s:21:"report/customer_order";i:132;s:22:"report/customer_reward";i:133;s:16:"report/marketing";i:134;s:24:"report/product_purchased";i:135;s:21:"report/product_viewed";i:136;s:18:"report/sale_coupon";i:137;s:17:"report/sale_order";i:138;s:18:"report/sale_return";i:139;s:20:"report/sale_shipping";i:140;s:15:"report/sale_tax";i:141;s:17:"sale/custom_field";i:142;s:13:"sale/customer";i:143;s:20:"sale/customer_ban_ip";i:144;s:19:"sale/customer_group";i:145;s:10:"sale/order";i:146;s:14:"sale/recurring";i:147;s:11:"sale/return";i:148;s:12:"sale/voucher";i:149;s:18:"sale/voucher_theme";i:150;s:15:"setting/setting";i:151;s:13:"setting/store";i:152;s:16:"shipping/auspost";i:153;s:17:"shipping/citylink";i:154;s:14:"shipping/fedex";i:155;s:13:"shipping/flat";i:156;s:13:"shipping/free";i:157;s:13:"shipping/item";i:158;s:23:"shipping/parcelforce_48";i:159;s:15:"shipping/pickup";i:160;s:19:"shipping/royal_mail";i:161;s:12:"shipping/ups";i:162;s:13:"shipping/usps";i:163;s:15:"shipping/weight";i:164;s:11:"tool/backup";i:165;s:14:"tool/error_log";i:166;s:11:"tool/upload";i:167;s:12:"total/coupon";i:168;s:12:"total/credit";i:169;s:14:"total/handling";i:170;s:16:"total/klarna_fee";i:171;s:19:"total/low_order_fee";i:172;s:12:"total/reward";i:173;s:14:"total/shipping";i:174;s:15:"total/sub_total";i:175;s:9:"total/tax";i:176;s:11:"total/total";i:177;s:13:"total/voucher";i:178;s:8:"user/api";i:179;s:9:"user/user";i:180;s:20:"user/user_permission";}s:6:"modify";a:181:{i:0;s:17:"catalog/attribute";i:1;s:23:"catalog/attribute_group";i:2;s:16:"catalog/category";i:3;s:16:"catalog/download";i:4;s:14:"catalog/filter";i:5;s:19:"catalog/information";i:6;s:20:"catalog/manufacturer";i:7;s:14:"catalog/option";i:8;s:15:"catalog/product";i:9;s:17:"catalog/recurring";i:10;s:14:"catalog/review";i:11;s:18:"common/column_left";i:12;s:18:"common/filemanager";i:13;s:11:"common/menu";i:14;s:14:"common/profile";i:15;s:12:"common/stats";i:16;s:18:"dashboard/activity";i:17;s:15:"dashboard/chart";i:18;s:18:"dashboard/customer";i:19;s:13:"dashboard/map";i:20;s:16:"dashboard/online";i:21;s:15:"dashboard/order";i:22;s:16:"dashboard/recent";i:23;s:14:"dashboard/sale";i:24;s:13:"design/banner";i:25;s:13:"design/layout";i:26;s:14:"extension/feed";i:27;s:19:"extension/installer";i:28;s:22:"extension/modification";i:29;s:16:"extension/module";i:30;s:17:"extension/openbay";i:31;s:17:"extension/payment";i:32;s:18:"extension/shipping";i:33;s:15:"extension/total";i:34;s:16:"feed/google_base";i:35;s:19:"feed/google_sitemap";i:36;s:15:"feed/openbaypro";i:37;s:20:"localisation/country";i:38;s:21:"localisation/currency";i:39;s:21:"localisation/geo_zone";i:40;s:21:"localisation/language";i:41;s:25:"localisation/length_class";i:42;s:21:"localisation/location";i:43;s:25:"localisation/order_status";i:44;s:26:"localisation/return_action";i:45;s:26:"localisation/return_reason";i:46;s:26:"localisation/return_status";i:47;s:25:"localisation/stock_status";i:48;s:22:"localisation/tax_class";i:49;s:21:"localisation/tax_rate";i:50;s:25:"localisation/weight_class";i:51;s:17:"localisation/zone";i:52;s:19:"marketing/affiliate";i:53;s:17:"marketing/contact";i:54;s:16:"marketing/coupon";i:55;s:19:"marketing/marketing";i:56;s:14:"module/account";i:57;s:16:"module/affiliate";i:58;s:20:"module/amazon_button";i:59;s:13:"module/banner";i:60;s:17:"module/bestseller";i:61;s:15:"module/carousel";i:62;s:15:"module/category";i:63;s:11:"module/ebay";i:64;s:15:"module/featured";i:65;s:13:"module/filter";i:66;s:22:"module/google_hangouts";i:67;s:11:"module/html";i:68;s:18:"module/information";i:69;s:13:"module/latest";i:70;s:16:"module/pp_button";i:71;s:15:"module/pp_login";i:72;s:16:"module/slideshow";i:73;s:14:"module/special";i:74;s:12:"module/store";i:75;s:14:"openbay/amazon";i:76;s:22:"openbay/amazon_listing";i:77;s:22:"openbay/amazon_product";i:78;s:16:"openbay/amazonus";i:79;s:24:"openbay/amazonus_listing";i:80;s:24:"openbay/amazonus_product";i:81;s:12:"openbay/ebay";i:82;s:20:"openbay/ebay_profile";i:83;s:21:"openbay/ebay_template";i:84;s:12:"openbay/etsy";i:85;s:20:"openbay/etsy_product";i:86;s:21:"openbay/etsy_shipping";i:87;s:17:"openbay/etsy_shop";i:88;s:23:"payment/amazon_checkout";i:89;s:24:"payment/authorizenet_aim";i:90;s:24:"payment/authorizenet_sim";i:91;s:21:"payment/bank_transfer";i:92;s:22:"payment/bluepay_hosted";i:93;s:24:"payment/bluepay_redirect";i:94;s:14:"payment/cheque";i:95;s:11:"payment/cod";i:96;s:17:"payment/firstdata";i:97;s:24:"payment/firstdata_remote";i:98;s:21:"payment/free_checkout";i:99;s:22:"payment/klarna_account";i:100;s:22:"payment/klarna_invoice";i:101;s:14:"payment/liqpay";i:102;s:14:"payment/nochex";i:103;s:15:"payment/paymate";i:104;s:16:"payment/paypoint";i:105;s:13:"payment/payza";i:106;s:26:"payment/perpetual_payments";i:107;s:18:"payment/pp_express";i:108;s:18:"payment/pp_payflow";i:109;s:25:"payment/pp_payflow_iframe";i:110;s:14:"payment/pp_pro";i:111;s:21:"payment/pp_pro_iframe";i:112;s:19:"payment/pp_standard";i:113;s:14:"payment/realex";i:114;s:21:"payment/realex_remote";i:115;s:22:"payment/sagepay_direct";i:116;s:22:"payment/sagepay_server";i:117;s:18:"payment/sagepay_us";i:118;s:24:"payment/securetrading_pp";i:119;s:24:"payment/securetrading_ws";i:120;s:14:"payment/skrill";i:121;s:19:"payment/twocheckout";i:122;s:28:"payment/web_payment_software";i:123;s:16:"payment/worldpay";i:124;s:16:"report/affiliate";i:125;s:25:"report/affiliate_activity";i:126;s:22:"report/affiliate_login";i:127;s:24:"report/customer_activity";i:128;s:22:"report/customer_credit";i:129;s:21:"report/customer_login";i:130;s:22:"report/customer_online";i:131;s:21:"report/customer_order";i:132;s:22:"report/customer_reward";i:133;s:16:"report/marketing";i:134;s:24:"report/product_purchased";i:135;s:21:"report/product_viewed";i:136;s:18:"report/sale_coupon";i:137;s:17:"report/sale_order";i:138;s:18:"report/sale_return";i:139;s:20:"report/sale_shipping";i:140;s:15:"report/sale_tax";i:141;s:17:"sale/custom_field";i:142;s:13:"sale/customer";i:143;s:20:"sale/customer_ban_ip";i:144;s:19:"sale/customer_group";i:145;s:10:"sale/order";i:146;s:14:"sale/recurring";i:147;s:11:"sale/return";i:148;s:12:"sale/voucher";i:149;s:18:"sale/voucher_theme";i:150;s:15:"setting/setting";i:151;s:13:"setting/store";i:152;s:16:"shipping/auspost";i:153;s:17:"shipping/citylink";i:154;s:14:"shipping/fedex";i:155;s:13:"shipping/flat";i:156;s:13:"shipping/free";i:157;s:13:"shipping/item";i:158;s:23:"shipping/parcelforce_48";i:159;s:15:"shipping/pickup";i:160;s:19:"shipping/royal_mail";i:161;s:12:"shipping/ups";i:162;s:13:"shipping/usps";i:163;s:15:"shipping/weight";i:164;s:11:"tool/backup";i:165;s:14:"tool/error_log";i:166;s:11:"tool/upload";i:167;s:12:"total/coupon";i:168;s:12:"total/credit";i:169;s:14:"total/handling";i:170;s:16:"total/klarna_fee";i:171;s:19:"total/low_order_fee";i:172;s:12:"total/reward";i:173;s:14:"total/shipping";i:174;s:15:"total/sub_total";i:175;s:9:"total/tax";i:176;s:11:"total/total";i:177;s:13:"total/voucher";i:178;s:8:"user/api";i:179;s:9:"user/user";i:180;s:20:"user/user_permission";}}'),
(10,
'Demonstration', '');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher`
--
CREATE TABLE IF NOT EXISTS
`oc_voucher` (
`voucher_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id`
int(11) NOT NULL,
`code` varchar(10) NOT NULL,
`from_name` varchar(64)
NOT NULL,
`from_email` varchar(96) NOT NULL,
`to_name` varchar(64) NOT
NULL,
`to_email` varchar(96) NOT NULL,
`voucher_theme_id` int(11) NOT
NULL,
`message` text NOT NULL,
`amount` decimal(15,4) NOT NULL,
`status` tinyint(1) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY
KEY (`voucher_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_history`
--
CREATE TABLE IF NOT EXISTS
`oc_voucher_history` (
`voucher_history_id` int(11) NOT NULL
AUTO_INCREMENT,
`voucher_id` int(11) NOT NULL,
`order_id` int(11) NOT
NULL,
`amount` decimal(15,4) NOT NULL,
`date_added` datetime NOT NULL,
PRIMARY KEY (`voucher_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_theme`
--
CREATE TABLE IF NOT EXISTS
`oc_voucher_theme` (
`voucher_theme_id` int(11) NOT NULL AUTO_INCREMENT,
`image` varchar(255) NOT NULL,
PRIMARY KEY (`voucher_theme_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_voucher_theme`
--
INSERT INTO `oc_voucher_theme`
(`voucher_theme_id`, `image`) VALUES
(8,
'catalog/demo/canon_eos_5d_2.jpg'),
(7,
'catalog/demo/gift-voucher-birthday.jpg'),
(6,
'catalog/demo/apple_logo.jpg');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_voucher_theme_description`
--
CREATE TABLE IF NOT
EXISTS `oc_voucher_theme_description` (
`voucher_theme_id` int(11) NOT
NULL,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`voucher_theme_id`,`language_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_voucher_theme_description`
--
INSERT INTO
`oc_voucher_theme_description` (`voucher_theme_id`, `language_id`, `name`)
VALUES
(6, 1, 'Новый год'),
(7, 1, 'День
рождения'),
(8, 1, 'Другое');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_weight_class`
--
CREATE TABLE IF NOT EXISTS
`oc_weight_class` (
`weight_class_id` int(11) NOT NULL AUTO_INCREMENT,
`value` decimal(15,8) NOT NULL DEFAULT '0.00000000',
PRIMARY KEY
(`weight_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_weight_class`
--
INSERT INTO `oc_weight_class` (`weight_class_id`,
`value`) VALUES
(1, '1.00000000'),
(2, '1000.00000000'),
(5,
'2.20460000'),
(6, '35.27400000');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_weight_class_description`
--
CREATE TABLE IF NOT
EXISTS `oc_weight_class_description` (
`weight_class_id` int(11) NOT NULL
AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`title` varchar(32) NOT
NULL,
`unit` varchar(4) NOT NULL,
PRIMARY KEY
(`weight_class_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_weight_class_description`
--
INSERT INTO `oc_weight_class_description`
(`weight_class_id`, `language_id`, `title`, `unit`) VALUES
(1, 1,
'Килограмм', 'кг'),
(2, 1, 'Грамм', 'г');
--
--------------------------------------------------------
--
-- Table
structure for table `oc_zone`
--
CREATE TABLE IF NOT EXISTS `oc_zone` (
`zone_id` int(11) NOT NULL AUTO_INCREMENT,
`country_id` int(11) NOT
NULL,
`name` varchar(128) NOT NULL,
`code` varchar(32) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`zone_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Dumping
data for table `oc_zone`
--
INSERT INTO `oc_zone` (`zone_id`,
`country_id`, `name`, `code`, `status`) VALUES
(1, 20, 'Брест', 'BR',
1),
(2, 20, 'Гомель', 'HO', 1),
(3, 20, 'Минск', 'HM', 1),
(4,
20, 'Гродно', 'HR', 1),
(5, 20, 'Могилев', 'MA', 1),
(6, 20,
'Минская область', 'MI', 1),
(7, 20, 'Витебск', 'VI',
1),
(8, 80, 'Abkhazia', 'AB', 1),
(9, 80, 'Ajaria', 'AJ', 1),
(10, 80,
'Tbilisi', 'TB', 1),
(11, 80, 'Guria', 'GU', 1),
(12, 80, 'Imereti', 'IM',
1),
(13, 80, 'Kakheti', 'KA', 1),
(14, 80, 'Kvemo Kartli', 'KK', 1),
(15,
80, 'Mtskheta-Mtianeti', 'MM', 1),
(16, 80, 'Racha Lechkhumi and Kvemo
Svanet', 'RL', 1),
(17, 80, 'Samegrelo-Zemo Svaneti', 'SZ', 1),
(18, 80,
'Samtskhe-Javakheti', 'SJ', 1),
(19, 80, 'Shida Kartli', 'SK', 1),
(20,
109, 'Алматинская область', 'AL', 1),
(21, 109,
'Алматы - город республ-го значения', 'AC',
1),
(22, 109, 'Акмолинская область', 'AM', 1),
(23, 109,
'Актюбинская область', 'AQ', 1),
(24, 109, 'Астана
- город республ-го значения', 'AS', 1),
(25, 109,
'Атырауская область', 'AT', 1),
(26, 109,
'Западно-Казахстанская область', 'BA', 1),
(27,
109, 'Байконур - город республ-го значения',
'BY', 1),
(28, 109, 'Мангистауская область', 'MA',
1),
(29, 109, 'Южно-Казахстанская область', 'ON',
1),
(30, 109, 'Павлодарская область', 'PA', 1),
(31,
109, 'Карагандинская область', 'QA', 1),
(32, 109,
'Костанайская область', 'QO', 1),
(33, 109,
'Кызылординская область', 'QY', 1),
(34, 109,
'Восточно-Казахстанская область', 'SH',
1),
(35, 109, 'Северо-Казахстанская область',
'SO', 1),
(36, 109, 'Жамбылская область', 'ZH', 1),
(37,
115, 'Bishkek', 'GB', 1),
(38, 115, 'Batken', 'B', 1),
(39, 115, 'Chu',
'C', 1),
(40, 115, 'Jalal-Abad', 'J', 1),
(41, 115, 'Naryn', 'N', 1),
(42,
115, 'Osh', 'O', 1),
(43, 115, 'Talas', 'T', 1),
(44, 115, 'Ysyk-Kol', 'Y',
1),
(45, 176, 'Республика Хакасия', 'KK', 1),
(46, 176,
'Московская область', 'MOS', 1),
(47, 176,
'Чукотский АО', 'CHU', 1),
(48, 176, 'Архангельская
область', 'ARK', 1),
(49, 176, 'Астраханская
область', 'AST', 1),
(50, 176, 'Алтайский край', 'ALT',
1),
(51, 176, 'Белгородская область', 'BEL', 1),
(52,
176, 'Еврейская АО', 'YEV', 1),
(53, 176, 'Амурская
область', 'AMU', 1),
(54, 176, 'Брянская область',
'BRY', 1),
(55, 176, 'Чувашская Республика', 'CU',
1),
(56, 176, 'Челябинская область', 'CHE', 1),
(57, 176,
'Карачаево-Черкеcсия', 'KC', 1),
(58, 176,
'Забайкальский край', 'ZAB', 1),
(59, 176,
'Ленинградская область', 'LEN', 1),
(60, 176,
'Республика Калмыкия', 'KL', 1),
(61, 176,
'Сахалинская область', 'SAK', 1),
(62, 176,
'Республика Алтай', 'AL', 1),
(63, 176, 'Чеченская
Республика', 'CE', 1),
(64, 176, 'Иркутская
область', 'IRK', 1),
(65, 176, 'Ивановская
область', 'IVA', 1),
(66, 176, 'Удмуртская
Республика', 'UD', 1),
(67, 176, 'Калининградская
область', 'KGD', 1),
(68, 176, 'Калужская область',
'KLU', 1),
(69, 176, 'Республика Татарстан', 'TA',
1),
(70, 176, 'Кемеровская область', 'KEM', 1),
(71, 176,
'Хабаровский край', 'KHA', 1),
(72, 176,
'Ханты-Мансийский АО - Югра', 'KHM', 1),
(73, 176,
'Костромская область', 'KOS', 1),
(74, 176,
'Краснодарский край', 'KDA', 1),
(75, 176,
'Красноярский край', 'KYA', 1),
(76, 176,
'Курганская область', 'KGN', 1),
(77, 176, 'Курская
область', 'KRS', 1),
(78, 176, 'Республика Тыва',
'TY', 1),
(79, 176, 'Липецкая область', 'LIP', 1),
(80, 176,
'Магаданская область', 'MAG', 1),
(81, 176,
'Республика Дагестан', 'DA', 1),
(82, 176,
'Республика Адыгея', 'AD', 1),
(83, 176, 'Москва',
'MOW', 1),
(84, 176, 'Мурманская область', 'MUR', 1),
(85,
176, 'Республика Кабардино-Балкария', 'KB',
1),
(86, 176, 'Ненецкий АО', 'NEN', 1),
(87, 176,
'Республика Ингушетия', 'IN', 1),
(88, 176,
'Нижегородская область', 'NIZ', 1),
(89, 176,
'Новгородская область', 'NGR', 1),
(90, 176,
'Новосибирская область', 'NVS', 1),
(91, 176,
'Омская область', 'OMS', 1),
(92, 176, 'Орловская
область', 'ORL', 1),
(93, 176, 'Оренбургская
область', 'ORE', 1),
(94, 176, 'Пензенская
область', 'PNZ', 1),
(95, 176, 'Пермский край', 'PER',
1),
(96, 176, 'Камчатский край', 'KAM', 1),
(97, 176,
'Республика Карелия', 'KR', 1),
(98, 176,
'Псковская область', 'PSK', 1),
(99, 176,
'Ростовская область', 'ROS', 1),
(100, 176,
'Рязанская область', 'RYA', 1),
(101, 176,
'Ямало-Ненецкий АО', 'YAN', 1),
(102, 176,
'Самарская область', 'SAM', 1),
(103, 176,
'Республика Мордовия', 'MO', 1),
(104, 176,
'Саратовская область', 'SAR', 1),
(105, 176,
'Смоленская область', 'SMO', 1),
(106, 176,
'Санкт-Петербург', 'SPE', 1),
(107, 176,
'Ставропольский край', 'STA', 1),
(108, 176,
'Республика Коми', 'KO', 1),
(109, 176, 'Тамбовская
область', 'TAM', 1),
(110, 176, 'Томская область',
'TOM', 1),
(111, 176, 'Тульская область', 'TUL', 1),
(112,
176, 'Тверская область', 'TVE', 1),
(113, 176,
'Тюменская область', 'TYU', 1),
(114, 176,
'Республика Башкортостан', 'BA', 1),
(115, 176,
'Ульяновская область', 'ULY', 1),
(116, 176,
'Республика Бурятия', 'BU', 1),
(117, 176,
'Республика Северная Осетия', 'SE', 1),
(118, 176,
'Владимирская область', 'VLA', 1),
(119, 176,
'Приморский край', 'PRI', 1),
(120, 176,
'Волгоградская область', 'VGG', 1),
(121, 176,
'Вологодская область', 'VLG', 1),
(122, 176,
'Воронежская область', 'VOR', 1),
(123, 176,
'Кировская область', 'KIR', 1),
(124, 176,
'Республика Саха', 'SA', 1),
(125, 176,
'Ярославская область', 'YAR', 1),
(126, 176,
'Свердловская область', 'SVE', 1),
(127, 176,
'Республика Марий Эл', 'ME', 1),
(128, 176,
'Республика Крым', 'CR', 1),
(129, 220, 'Черкассы',
'CK', 1),
(130, 220, 'Чернигов', 'CH', 1),
(131, 220,
'Черновцы', 'CV', 1),
(132, 220, 'Днепропетровск',
'DN', 1),
(133, 220, 'Донецк', 'DO', 1),
(134, 220,
'Ивано-Франковск', 'IV', 1),
(135, 220, 'Харьков',
'KH', 1),
(136, 220, 'Хмельницкий', 'KM', 1),
(137, 220,
'Кировоград', 'KR', 1),
(138, 220, 'Киевская
область', 'KV', 1),
(139, 220, 'Киев', 'KY', 1),
(140, 220,
'Луганск', 'LU', 1),
(141, 220, 'Львов', 'LV', 1),
(142, 220,
'Николаев', 'MY', 1),
(143, 220, 'Одесса', 'OD', 1),
(144,
220, 'Полтава', 'PO', 1),
(145, 220, 'Ровно', 'RI', 1),
(146,
176, 'Севастополь', 'SE', 1),
(147, 220, 'Сумы', 'SU',
1),
(148, 220, 'Тернополь', 'TE', 1),
(149, 220, 'Винница',
'VI', 1),
(150, 220, 'Луцк', 'VO', 1),
(151, 220, 'Ужгород',
'ZK', 1),
(152, 220, 'Запорожье', 'ZA', 1),
(153, 220,
'Житомир', 'ZH', 1),
(154, 220, 'Херсон', 'KE', 1),
(155, 226,
'Andijon', 'AN', 1),
(156, 226, 'Buxoro', 'BU', 1),
(157, 226, 'Farg''ona',
'FA', 1),
(158, 226, 'Jizzax', 'JI', 1),
(159, 226, 'Namangan', 'NG',
1),
(160, 226, 'Navoiy', 'NW', 1),
(161, 226, 'Qashqadaryo', 'QA',
1),
(162, 226, 'Qoraqalpog''iston Republikasi', 'QR', 1),
(163, 226,
'Samarqand', 'SA', 1),
(164, 226, 'Sirdaryo', 'SI', 1),
(165, 226,
'Surxondaryo', 'SU', 1),
(166, 226, 'Toshkent City', 'TK', 1),
(167, 226,
'Toshkent Region', 'TO', 1),
(168, 226, 'Xorazm', 'XO', 1);
--
--------------------------------------------------------
--
-- Table
structure for table `oc_zone_to_geo_zone`
--
CREATE TABLE IF NOT EXISTS
`oc_zone_to_geo_zone` (
`zone_to_geo_zone_id` int(11) NOT NULL
AUTO_INCREMENT,
`country_id` int(11) NOT NULL,
`zone_id` int(11) NOT
NULL DEFAULT '0',
`geo_zone_id` int(11) NOT NULL,
`date_added` datetime
NOT NULL,
`date_modified` datetime NOT NULL,
PRIMARY KEY
(`zone_to_geo_zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COLLATE=utf8_general_ci;
--
-- Dumping data for table
`oc_zone_to_geo_zone`
--
INSERT INTO `oc_zone_to_geo_zone`
(`zone_to_geo_zone_id`, `country_id`, `zone_id`, `geo_zone_id`,
`date_added`, `date_modified`) VALUES
(1, 222, 0, 4, '0000-00-00 00:00:00',
'0000-00-00 00:00:00'),
(110, 176, 0, 3, '2014-09-09 11:48:13', '0000-00-00
00:00:00');