IP : 3.141.198.45Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
hizup/
../
hablator/
../
koken/
../
goffice6/
../
xmb/
../
magento/
magento.sql/
/
-- MySQL dump 10.13 Distrib 5.5.62, for Linux (x86_64) -- -- Host: localhost Database: mage1945 -- ------------------------------------------------------ -- Server version 5.5.62
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- -- Table structure for table `[[dbprefix]]admin_assert` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_assert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_assert` ( `assert_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Assert ID', `assert_type` varchar(20) DEFAULT NULL COMMENT 'Assert Type', `assert_data` text COMMENT 'Assert Data', PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Assert Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_assert` --
LOCK TABLES `[[dbprefix]]admin_assert` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_assert` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]admin_assert` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_role` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_role` ( `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID', `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Role ID', `tree_level` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Role Tree Level', `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Role Sort Order', `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type', `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID', `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name', PRIMARY KEY (`role_id`), KEY `IDX_[[DBPREFIX]]ADMIN_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`), KEY `IDX_[[DBPREFIX]]ADMIN_ROLE_TREE_LEVEL` (`tree_level`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_role` --
LOCK TABLES `[[dbprefix]]admin_role` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_role` DISABLE KEYS */; INSERT INTO `[[dbprefix]]admin_role` VALUES (1,0,1,1,'G',0,'Administrators'),(2,1,2,0,'U',1,'[[admin_fname]]'); /*!40000 ALTER TABLE `[[dbprefix]]admin_role` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_rule` --
-- -- Dumping data for table `[[dbprefix]]cms_block` --
LOCK TABLES `[[dbprefix]]cms_block` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]cms_block` DISABLE KEYS */; INSERT INTO `[[dbprefix]]cms_block` VALUES (1,'Footer Links','footer_links','\n<ul>\n <li><a href=\"{{store direct_url=\"about-magento-demo-store\"}}\">About Us</a></li>\n <li><a href=\"{{store direct_url=\"customer-service\"}}\">Customer Service</a></li>\n<li class=\"last privacy\"><a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Privacy Policy</a></li>\r\n</ul>','[[regtime]]','[[regtime]]',1),(2,'Footer Links Company','footer_links_company','\n<div class=\"links\">\n <div class=\"block-title\">\n <strong><span>Company</span></strong>\n </div>\n <ul>\n <li><a href=\"{{store url=\"\"}}about-magento-demo-store/\">About Us</a></li>\n <li><a href=\"{{store url=\"\"}}contacts/\">Contact Us</a></li>\n <li><a href=\"{{store url=\"\"}}customer-service/\">Customer Service</a></li>\n <li><a href=\"{{store url=\"\"}}privacy-policy-cookie-restriction-mode/\">Privacy Policy</a></li>\n </ul>\n</div>','[[regtime]]','[[regtime]]',1),(3,'Cookie restriction notice','cookie_restriction_notice_block','<p>This website requires cookies to provide all of its features. For more information on what data is contained in the cookies, please see our <a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Privacy Policy page</a>. To accept cookies from this site, please click the Allow button below.</p>','[[regtime]]','[[regtime]]',1); /*!40000 ALTER TABLE `[[dbprefix]]cms_block` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]cms_block_store` --
DROP TABLE IF EXISTS `[[dbprefix]]cms_block_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]cms_block_store` ( `block_id` smallint(6) NOT NULL COMMENT 'Block ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`block_id`,`store_id`), KEY `IDX_[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]CMS_BLOCK_STORE_BLOCK_ID_[[DBPREFIX]]CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `[[dbprefix]]cms_block` (`block_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]cms_block_store` --
LOCK TABLES `[[dbprefix]]cms_block_store` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]cms_block_store` DISABLE KEYS */; INSERT INTO `[[dbprefix]]cms_block_store` VALUES (1,0),(2,0),(3,0); /*!40000 ALTER TABLE `[[dbprefix]]cms_block_store` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]cms_page` --
DROP TABLE IF EXISTS `[[dbprefix]]cms_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]cms_page` ( `page_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Page ID', `title` varchar(255) DEFAULT NULL COMMENT 'Page Title', `root_template` varchar(255) DEFAULT NULL COMMENT 'Page Template', `meta_keywords` text COMMENT 'Page Meta Keywords', `meta_description` text COMMENT 'Page Meta Description', `identifier` varchar(100) DEFAULT NULL COMMENT 'Page String Identifier', `content_heading` varchar(255) DEFAULT NULL COMMENT 'Page Content Heading', `content` mediumtext COMMENT 'Page Content', `creation_time` timestamp NULL DEFAULT NULL COMMENT 'Page Creation Time', `update_time` timestamp NULL DEFAULT NULL COMMENT 'Page Modification Time', `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Page Active', `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Page Sort Order', `layout_update_xml` text COMMENT 'Page Layout Update Content', `custom_theme` varchar(100) DEFAULT NULL COMMENT 'Page Custom Theme', `custom_root_template` varchar(255) DEFAULT NULL COMMENT 'Page Custom Template', `custom_layout_update_xml` text COMMENT 'Page Custom Layout Update Content', `custom_theme_from` date DEFAULT NULL COMMENT 'Page Custom Theme Active From Date', `custom_theme_to` date DEFAULT NULL COMMENT 'Page Custom Theme Active To Date', PRIMARY KEY (`page_id`), KEY `IDX_[[DBPREFIX]]CMS_PAGE_IDENTIFIER` (`identifier`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]cms_page` --
LOCK TABLES `[[dbprefix]]cms_page` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]cms_page` DISABLE KEYS */; INSERT INTO `[[dbprefix]]cms_page` VALUES (1,'404 Not Found 1','two_columns_right','Page keywords','Page description','no-route',NULL,'\n<div class=\"page-title\"><h1>Whoops, our bad...</h1></div>\n<dl>\n <dt>The page you requested was not found, and we have a fine guess why.</dt>\n <dd>\n <ul class=\"disc\">\n <li>If you typed the URL directly, please make sure the spelling is correct.</li>\n <li>If you clicked on a link to get here, the link is outdated.</li>\n </ul>\n </dd>\n</dl>\n<dl>\n <dt>What can you do?</dt>\n <dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\n <dd>\n <ul class=\"disc\">\n <li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\n <li>Use the search bar at the top of the page to search for your products.</li>\n <li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a>\n <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li>\n </ul>\n </dd>\n</dl>\n','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home page','two_columns_right',NULL,NULL,'home',NULL,'<div class=\"page-title\"><h2>Home Page</h2></div>','[[regtime]]','[[regtime]]',1,0,'<!--<reference name=\"content\">\n <block type=\"catalog/product_new\" name=\"home.catalog.product.new\" alias=\"product_new\" template=\"catalog/product/new.phtml\" after=\"cms_page\">\n <action method=\"addPriceBlockType\">\n <type>bundle</type>\n <block>bundle/catalog_product_price</block>\n <template>bundle/catalog/product/price.phtml</template>\n </action>\n </block>\n <block type=\"reports/product_viewed\" name=\"home.reports.product.viewed\" alias=\"product_viewed\" template=\"reports/home_product_viewed.phtml\" after=\"product_new\">\n <action method=\"addPriceBlockType\">\n <type>bundle</type>\n <block>bundle/catalog_product_price</block>\n <template>bundle/catalog/product/price.phtml</template>\n </action>\n </block>\n <block type=\"reports/product_compared\" name=\"home.reports.product.compared\" template=\"reports/home_product_compared.phtml\" after=\"product_viewed\">\n <action method=\"addPriceBlockType\">\n <type>bundle</type>\n <block>bundle/catalog_product_price</block>\n <template>bundle/catalog/product/price.phtml</template>\n </action>\n </block>\n </reference>\n <reference name=\"right\">\n <action method=\"unsetChild\"><alias>right.reports.product.viewed</alias></action>\n <action method=\"unsetChild\"><alias>right.reports.product.compared</alias></action>\n </reference>-->',NULL,NULL,NULL,NULL,NULL),(3,'About Us','two_columns_right',NULL,NULL,'about-magento-demo-store',NULL,'\n<div class=\"page-title\">\n <h1>About Magento Store</h1>\n</div>\n<div class=\"col3-set\">\n<div class=\"col-1\"><p style=\"line-height:1.2em;\"><small>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\nMorbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec,\ntempus vitae, iaculis semper, pede.</small></p>\n<p style=\"color:#888; font:1.2em/1.4em georgia, serif;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\nMorbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis,\nporta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta.</p></div>\n<div class=\"col-2\">\n<p><strong style=\"color:#de036f;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus.\nDuis lobortis. Nulla nec velit.</strong></p>\n<p>Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper.\nPhasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada\nfames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac,\ntempus nec, tempor nec, justo. </p>\n<p>Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci, sit amet aliquet lectus dolor et quam.\nPellentesque consequat luctus purus. Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi.\nVestibulum sapien dolor, aliquet nec, porta ac, malesuada a, libero. Praesent feugiat purus eget est.\nNulla facilisi. Vestibulum tincidunt sapien eu velit. Mauris purus. Maecenas eget mauris eu orci accumsan feugiat.\nPellentesque eget velit. Nunc tincidunt.</p></div>\n<div class=\"col-3\">\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper </p>\n<p><strong style=\"color:#de036f;\">Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci,\nsit amet aliquet lectus dolor et quam. Pellentesque consequat luctus purus.</strong></p>\n<p>Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi.</p>\n<div class=\"divider\"></div>\n<p>To all of you, from all of us at Magento Store - Thank you and Happy eCommerce!</p>\n<p style=\"line-height:1.2em;\"><strong style=\"font:italic 2em Georgia, serif;\">John Doe</strong><br />\n<small>Some important guy</small></p></div>\n</div>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Customer Service','three_columns',NULL,NULL,'customer-service',NULL,'<div class=\"page-title\">\n<h1>Customer Service</h1>\n</div>\n<ul class=\"disc\">\n<li><a href=\"#answer1\">Shipping & Delivery</a></li>\n<li><a href=\"#answer2\">Privacy & Security</a></li>\n<li><a href=\"#answer3\">Returns & Replacements</a></li>\n<li><a href=\"#answer4\">Ordering</a></li>\n<li><a href=\"#answer5\">Payment, Pricing & Promotions</a></li>\n<li><a href=\"#answer6\">Viewing Orders</a></li>\n<li><a href=\"#answer7\">Updating Account Information</a></li>\n</ul>\n<dl>\n<dt id=\"answer1\">Shipping & Delivery</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\nPellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\nNunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\njusto.</dd>\n<dt id=\"answer2\">Privacy & Security</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\nPellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\nNunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\njusto.</dd>\n<dt id=\"answer3\">Returns & Replacements</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\nPellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\nNunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\njusto.</dd>\n<dt id=\"answer4\">Ordering</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\nPellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\nNunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\njusto.</dd>\n<dt id=\"answer5\">Payment, Pricing & Promotions</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\nPellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\nNunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\njusto.</dd>\n<dt id=\"answer6\">Viewing Orders</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\nMauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\nCras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\nfaucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\n Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\n Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\n justo.</dd>\n<dt id=\"answer7\">Updating Account Information</dt>\n<dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.\n Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.\n Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in,\n faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa.\n Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\n Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec,\n justo.</dd>\n</dl>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Enable Cookies','one_column',NULL,NULL,'enable-cookies',NULL,'<div class=\"std\">\n <ul class=\"messages\">\n <li class=\"notice-msg\">\n <ul>\n <li>Please enable cookies in your web browser to continue.</li>\n </ul>\n </li>\n </ul>\n <div class=\"page-title\">\n <h1><a name=\"top\"></a>What are Cookies?</h1>\n </div>\n <p>Cookies are short pieces of data that are sent to your computer when you visit a website.\n On later visits, this data is then returned to that website. Cookies allow us to recognize you automatically\n whenever you visit our site so that we can personalize your experience and provide you with better service.\n We also use cookies (and similar browser data, such as Flash cookies) for fraud prevention and other purposes.\n If your web browser is set to refuse cookies from our website, you will not be able to complete a purchase\n or take advantage of certain features of our website, such as storing items in your Shopping Cart or\n receiving personalized recommendations. As a result, we strongly encourage you to configure your web\n browser to accept cookies from our website.</p>\n <h2 class=\"subtitle\">Enabling Cookies</h2>\n <ul class=\"disc\">\n <li><a href=\"#ie7\">Internet Explorer 7.x</a></li>\n <li><a href=\"#ie6\">Internet Explorer 6.x</a></li>\n <li><a href=\"#firefox\">Mozilla/Firefox</a></li>\n <li><a href=\"#opera\">Opera 7.x</a></li>\n </ul>\n <h3><a name=\"ie7\"></a>Internet Explorer 7.x</h3>\n <ol>\n <li>\n <p>Start Internet Explorer</p>\n </li>\n <li>\n <p>Under the <strong>Tools</strong> menu, click <strong>Internet Options</strong></p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-1.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Click the <strong>Privacy</strong> tab</p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-2.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Click the <strong>Advanced</strong> button</p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-3.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Put a check mark in the box for <strong>Override Automatic Cookie Handling</strong>,\n put another check mark in the <strong>Always accept session cookies </strong>box</p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-4.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Click <strong>OK</strong></p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-5.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Click <strong>OK</strong></p>\n <p><img src=\"{{skin url=\"images/cookies/ie7-6.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Restart Internet Explore</p>\n </li>\n </ol>\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\n <h3><a name=\"ie6\"></a>Internet Explorer 6.x</h3>\n <ol>\n <li>\n <p>Select <strong>Internet Options</strong> from the Tools menu</p>\n <p><img src=\"{{skin url=\"images/cookies/ie6-1.gif\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Click on the <strong>Privacy</strong> tab</p>\n </li>\n <li>\n <p>Click the <strong>Default</strong> button (or manually slide the bar down to <strong>Medium</strong>)\n under <strong>Settings</strong>. Click <strong>OK</strong></p>\n <p><img src=\"{{skin url=\"images/cookies/ie6-2.gif\"}}\" alt=\"\" /></p>\n </li>\n </ol>\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\n <h3><a name=\"firefox\"></a>Mozilla/Firefox</h3>\n <ol>\n <li>\n <p>Click on the <strong>Tools</strong>-menu in Mozilla</p>\n </li>\n <li>\n <p>Click on the <strong>Options...</strong> item in the menu - a new window open</p>\n </li>\n <li>\n <p>Click on the <strong>Privacy</strong> selection in the left part of the window. (See image below)</p>\n <p><img src=\"{{skin url=\"images/cookies/firefox.png\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>Expand the <strong>Cookies</strong> section</p>\n </li>\n <li>\n <p>Check the <strong>Enable cookies</strong> and <strong>Accept cookies normally</strong> checkboxes</p>\n </li>\n <li>\n <p>Save changes by clicking <strong>Ok</strong>.</p>\n </li>\n </ol>\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\n <h3><a name=\"opera\"></a>Opera 7.x</h3>\n <ol>\n <li>\n <p>Click on the <strong>Tools</strong> menu in Opera</p>\n </li>\n <li>\n <p>Click on the <strong>Preferences...</strong> item in the menu - a new window open</p>\n </li>\n <li>\n <p>Click on the <strong>Privacy</strong> selection near the bottom left of the window. (See image below)</p>\n <p><img src=\"{{skin url=\"images/cookies/opera.png\"}}\" alt=\"\" /></p>\n </li>\n <li>\n <p>The <strong>Enable cookies</strong> checkbox must be checked, and <strong>Accept all cookies</strong>\n should be selected in the "<strong>Normal cookies</strong>" drop-down</p>\n </li>\n <li>\n <p>Save changes by clicking <strong>Ok</strong></p>\n </li>\n </ol>\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\n</div>\n','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(6,'Privacy Policy','one_column',NULL,NULL,'privacy-policy-cookie-restriction-mode','Privacy Policy','<p style=\"color: #ff0000; font-weight: bold; font-size: 13px\">\n Please replace this text with you Privacy Policy.\n Please add any additional cookies your website uses below (e.g., Google Analytics)\n</p>\n<p>\n This privacy policy sets out how {{config path=\"general/store_information/name\"}} uses and protects any information\n that you give {{config path=\"general/store_information/name\"}} when you use this website.\n {{config path=\"general/store_information/name\"}} is committed to ensuring that your privacy is protected.\n Should we ask you to provide certain information by which you can be identified when using this website,\n then you can be assured that it will only be used in accordance with this privacy statement.\n {{config path=\"general/store_information/name\"}} may change this policy from time to time by updating this page.\n You should check this page from time to time to ensure that you are happy with any changes.\n</p>\n<h2>What we collect</h2>\n<p>We may collect the following information:</p>\n<ul>\n <li>name</li>\n <li>contact information including email address</li>\n <li>demographic information such as postcode, preferences and interests</li>\n <li>other information relevant to customer surveys and/or offers</li>\n</ul>\n<p>\n For the exhaustive list of cookies we collect see the <a href=\"#list\">List of cookies we collect</a> section.\n</p>\n<h2>What we do with the information we gather</h2>\n<p>\n We require this information to understand your needs and provide you with a better service,\n and in particular for the following reasons:\n</p>\n<ul>\n <li>Internal record keeping.</li>\n <li>We may use the information to improve our products and services.</li>\n <li>\n We may periodically send promotional emails about new products, special offers or other information which we\n think you may find interesting using the email address which you have provided.\n </li>\n <li>\n From time to time, we may also use your information to contact you for market research purposes.\n We may contact you by email, phone, fax or mail. We may use the information to customise the website\n according to your interests.\n </li>\n</ul>\n<h2>Security</h2>\n<p>\n We are committed to ensuring that your information is secure. In order to prevent unauthorised access or disclosure,\n we have put in place suitable physical, electronic and managerial procedures to safeguard and secure\n the information we collect online.\n</p>\n<h2>How we use cookies</h2>\n<p>\n A cookie is a small file which asks permission to be placed on your computer\'s hard drive.\n Once you agree, the file is added and the cookie helps analyse web traffic or lets you know when you visit\n a particular site. Cookies allow web applications to respond to you as an individual. The web application\n can tailor its operations to your needs, likes and dislikes by gathering and remembering information about\n your preferences.\n</p>\n<p>\n We use traffic log cookies to identify which pages are being used. This helps us analyse data about web page traffic\n and improve our website in order to tailor it to customer needs. We only use this information for statistical\n analysis purposes and then the data is removed from the system.\n</p>\n<p>\n Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful\n and which you do not. A cookie in no way gives us access to your computer or any information about you,\n other than the data you choose to share with us. You can choose to accept or decline cookies.\n Most web browsers automatically accept cookies, but you can usually modify your browser setting\n to decline cookies if you prefer. This may prevent you from taking full advantage of the website.\n</p>\n<h2>Links to other websites</h2>\n<p>\n Our website may contain links to other websites of interest. However, once you have used these links\n to leave our site, you should note that we do not have any control over that other website.\n Therefore, we cannot be responsible for the protection and privacy of any information which you provide whilst\n visiting such sites and such sites are not governed by this privacy statement.\n You should exercise caution and look at the privacy statement applicable to the website in question.\n</p>\n<h2>Controlling your personal information</h2>\n<p>You may choose to restrict the collection or use of your personal information in the following ways:</p>\n<ul>\n <li>\n whenever you are asked to fill in a form on the website, look for the box that you can click to indicate\n that you do not want the information to be used by anybody for direct marketing purposes\n </li>\n <li>\n if you have previously agreed to us using your personal information for direct marketing purposes,\n you may change your mind at any time by writing to or emailing us at\n {{config path=\"trans_email/ident_general/email\"}}\n </li>\n</ul>\n<p>\n We will not sell, distribute or lease your personal information to third parties unless we have your permission\n or are required by law to do so. We may use your personal information to send you promotional information\n about third parties which we think you may find interesting if you tell us that you wish this to happen.\n</p>\n<p>\n You may request details of personal information which we hold about you under the Data Protection Act 1998.\n A small fee will be payable. If you would like a copy of the information held on you please write to\n {{config path=\"general/store_information/address\"}}.\n</p>\n<p>\n If you believe that any information we are holding on you is incorrect or incomplete,\n please write to or email us as soon as possible, at the above address.\n We will promptly correct any information found to be incorrect.\n</p>\n<h2><a name=\"list\"></a>List of cookies we collect</h2>\n<p>The table below lists the cookies we collect and what information they store.</p>\n<table class=\"data-table\">\n <thead>\n <tr>\n <th>COOKIE name</th>\n <th>COOKIE Description</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>CART</th>\n <td>The association with your shopping cart.</td>\n </tr>\n <tr>\n <th>CATEGORY_INFO</th>\n <td>Stores the category info on the page, that allows to display pages more quickly.</td>\n </tr>\n <tr>\n <th>COMPARE</th>\n <td>The items that you have in the Compare Products list.</td>\n </tr>\n <tr>\n <th>CURRENCY</th>\n <td>Your preferred currency</td>\n </tr>\n <tr>\n <th>CUSTOMER</th>\n <td>An encrypted version of your customer id with the store.</td>\n </tr>\n <tr>\n <th>CUSTOMER_AUTH</th>\n <td>An indicator if you are currently logged into the store.</td>\n </tr>\n <tr>\n <th>CUSTOMER_INFO</th>\n <td>An encrypted version of the customer group you belong to.</td>\n </tr>\n <tr>\n <th>CUSTOMER_SEGMENT_IDS</th>\n <td>Stores the Customer Segment ID</td>\n </tr>\n <tr>\n <th>EXTERNAL_NO_CACHE</th>\n <td>A flag, which indicates whether caching is disabled or not.</td>\n </tr>\n <tr>\n <th>FRONTEND</th>\n <td>You sesssion ID on the server.</td>\n </tr>\n <tr>\n <th>GUEST-VIEW</th>\n <td>Allows guests to edit their orders.</td>\n </tr>\n <tr>\n <th>LAST_CATEGORY</th>\n <td>The last category you visited.</td>\n </tr>\n <tr>\n <th>LAST_PRODUCT</th>\n <td>The most recent product you have viewed.</td>\n </tr>\n <tr>\n <th>NEWMESSAGE</th>\n <td>Indicates whether a new message has been received.</td>\n </tr>\n <tr>\n <th>NO_CACHE</th>\n <td>Indicates whether it is allowed to use cache.</td>\n </tr>\n <tr>\n <th>PERSISTENT_SHOPPING_CART</th>\n <td>A link to information about your cart and viewing history if you have asked the site.</td>\n </tr>\n <tr>\n <th>POLL</th>\n <td>The ID of any polls you have recently voted in.</td>\n </tr>\n <tr>\n <th>POLLN</th>\n <td>Information on what polls you have voted on.</td>\n </tr>\n <tr>\n <th>RECENTLYCOMPARED</th>\n <td>The items that you have recently compared. </td>\n </tr>\n <tr>\n <th>STF</th>\n <td>Information on products you have emailed to friends.</td>\n </tr>\n <tr>\n <th>STORE</th>\n <td>The store view or language you have selected.</td>\n </tr>\n <tr>\n <th>USER_ALLOWED_SAVE_COOKIE</th>\n <td>Indicates whether a customer allowed to use cookies.</td>\n </tr>\n <tr>\n <th>VIEWED_PRODUCT_IDS</th>\n <td>The products that you have recently viewed.</td>\n </tr>\n <tr>\n <th>WISHLIST</th>\n <td>An encrypted list of products added to your Wishlist.</td>\n </tr>\n <tr>\n <th>WISHLIST_CNT</th>\n <td>The number of items in your Wishlist.</td>\n </tr>\n </tbody>\n</table>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `[[dbprefix]]cms_page` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]cms_page_store` --
DROP TABLE IF EXISTS `[[dbprefix]]cms_page_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]cms_page_store` ( `page_id` smallint(6) NOT NULL COMMENT 'Page ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`page_id`,`store_id`), KEY `IDX_[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]CMS_PAGE_STORE_PAGE_ID_[[DBPREFIX]]CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]cms_page` (`page_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]cms_page_store` --
LOCK TABLES `[[dbprefix]]cms_page_store` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]cms_page_store` DISABLE KEYS */; INSERT INTO `[[dbprefix]]cms_page_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0); /*!40000 ALTER TABLE `[[dbprefix]]cms_page_store` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]core_cache` --
-- -- Dumping data for table `[[dbprefix]]sitemap` --
LOCK TABLES `[[dbprefix]]sitemap` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]sitemap` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]sitemap` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tag` --
DROP TABLE IF EXISTS `[[dbprefix]]tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tag` ( `tag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tag Id', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `status` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Status', `first_customer_id` int(10) unsigned DEFAULT NULL COMMENT 'First Customer Id', `first_store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'First Store Id', PRIMARY KEY (`tag_id`), KEY `FK_[[DBPREFIX]]TAG_FIRST_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` (`first_customer_id`), KEY `FK_[[DBPREFIX]]TAG_FIRST_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` (`first_store_id`), CONSTRAINT `FK_[[DBPREFIX]]TAG_FIRST_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`first_customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE NO ACTION, CONSTRAINT `FK_[[DBPREFIX]]TAG_FIRST_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`first_store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE SET NULL ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tag` --
LOCK TABLES `[[dbprefix]]tag` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tag` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tag` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tag_properties` --
DROP TABLE IF EXISTS `[[dbprefix]]tag_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tag_properties` ( `tag_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Tag Id', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id', `base_popularity` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Base Popularity', PRIMARY KEY (`tag_id`,`store_id`), KEY `IDX_[[DBPREFIX]]TAG_PROPERTIES_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]TAG_PROPERTIES_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAG_PROPERTIES_TAG_ID_[[DBPREFIX]]TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `[[dbprefix]]tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Properties'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tag_properties` --
LOCK TABLES `[[dbprefix]]tag_properties` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tag_properties` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tag_properties` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tag_relation` --
DROP TABLE IF EXISTS `[[dbprefix]]tag_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tag_relation` ( `tag_relation_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tag Relation Id', `tag_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Tag Id', `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id', `store_id` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Store Id', `active` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Active', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', PRIMARY KEY (`tag_relation_id`), UNIQUE KEY `UNQ_[[DBPREFIX]]TAG_RELATION_TAG_ID_CUSTOMER_ID_PRODUCT_ID_STORE_ID` (`tag_id`,`customer_id`,`product_id`,`store_id`), KEY `IDX_[[DBPREFIX]]TAG_RELATION_PRODUCT_ID` (`product_id`), KEY `IDX_[[DBPREFIX]]TAG_RELATION_TAG_ID` (`tag_id`), KEY `IDX_[[DBPREFIX]]TAG_RELATION_CUSTOMER_ID` (`customer_id`), KEY `IDX_[[DBPREFIX]]TAG_RELATION_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]TAG_RELATION_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAG_RELATION_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAG_RELATION_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAG_RELATION_TAG_ID_[[DBPREFIX]]TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `[[dbprefix]]tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Relation'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tag_relation` --
LOCK TABLES `[[dbprefix]]tag_relation` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tag_relation` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tag_relation` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tag_summary` --
DROP TABLE IF EXISTS `[[dbprefix]]tag_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tag_summary` ( `tag_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Tag Id', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id', `customers` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customers', `products` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Products', `uses` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Uses', `historical_uses` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Historical Uses', `popularity` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Popularity', `base_popularity` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Base Popularity', PRIMARY KEY (`tag_id`,`store_id`), KEY `IDX_[[DBPREFIX]]TAG_SUMMARY_STORE_ID` (`store_id`), KEY `IDX_[[DBPREFIX]]TAG_SUMMARY_TAG_ID` (`tag_id`), CONSTRAINT `FK_[[DBPREFIX]]TAG_SUMMARY_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAG_SUMMARY_TAG_ID_[[DBPREFIX]]TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `[[dbprefix]]tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Summary'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tag_summary` --
LOCK TABLES `[[dbprefix]]tag_summary` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tag_summary` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tag_summary` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_calculation` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_calculation` ( `tax_calculation_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Id', `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id', `tax_calculation_rule_id` int(11) NOT NULL COMMENT 'Tax Calculation Rule Id', `customer_tax_class_id` smallint(6) NOT NULL COMMENT 'Customer Tax Class Id', `product_tax_class_id` smallint(6) NOT NULL COMMENT 'Product Tax Class Id', PRIMARY KEY (`tax_calculation_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_TAX_CALCULATION_RATE_ID` (`tax_calculation_rate_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`), KEY `DC62AA3A0515973AF9E40AD22777C73A` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`), CONSTRAINT `FK_[[DBPREFIX]]TAX_CALC_PRD_TAX_CLASS_ID_[[DBPREFIX]]TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `[[dbprefix]]tax_class` (`class_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]TAX_CALC_CSTR_TAX_CLASS_ID_[[DBPREFIX]]TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `[[dbprefix]]tax_class` (`class_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_469DCE2C6AFE66A67F19F89821271A06` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_2B652BD3CC9AD34C7A2B33BAA2AB9BBB` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `[[dbprefix]]tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_calculation` --
LOCK TABLES `[[dbprefix]]tax_calculation` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation` DISABLE KEYS */; INSERT INTO `[[dbprefix]]tax_calculation` VALUES (1,1,1,3,2),(2,2,1,3,2); /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_calculation_rate` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_calculation_rate` ( `tax_calculation_rate_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Id', `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country Id', `tax_region_id` int(11) NOT NULL COMMENT 'Tax Region Id', `tax_postcode` varchar(21) DEFAULT NULL COMMENT 'Tax Postcode', `code` varchar(255) NOT NULL COMMENT 'Code', `rate` decimal(12,4) NOT NULL COMMENT 'Rate', `zip_is_range` smallint(6) DEFAULT NULL COMMENT 'Zip Is Range', `zip_from` int(10) unsigned DEFAULT NULL COMMENT 'Zip From', `zip_to` int(10) unsigned DEFAULT NULL COMMENT 'Zip To', PRIMARY KEY (`tax_calculation_rate_id`), KEY `IDX_[[DBPREFIX]]TAX_CALC_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_RATE_CODE` (`code`), KEY `A3AD8DCACB38995910B5FDF5D42127A2` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_calculation_rate` --
LOCK TABLES `[[dbprefix]]tax_calculation_rate` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate` DISABLE KEYS */; INSERT INTO `[[dbprefix]]tax_calculation_rate` VALUES (1,'US',12,'*','US-CA-*-Rate 1',8.2500,NULL,NULL,NULL),(2,'US',43,'*','US-NY-*-Rate 1',8.3750,NULL,NULL,NULL); /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_calculation_rate_title` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rate_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_calculation_rate_title` ( `tax_calculation_rate_title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title Id', `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `value` varchar(255) NOT NULL COMMENT 'Value', PRIMARY KEY (`tax_calculation_rate_title_id`), KEY `IDX_[[DBPREFIX]]TAX_CALC_RATE_TTL_TAX_CALC_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID` (`tax_calculation_rate_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]TAX_CALC_RATE_TTL_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_D28111D1128C56F7BE39EF301F9F32B2` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_calculation_rate_title` --
LOCK TABLES `[[dbprefix]]tax_calculation_rate_title` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate_title` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rate_title` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_calculation_rule` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_calculation_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_calculation_rule` ( `tax_calculation_rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule Id', `code` varchar(255) NOT NULL COMMENT 'Code', `priority` int(11) NOT NULL COMMENT 'Priority', `position` int(11) NOT NULL COMMENT 'Position', `calculate_subtotal` int(11) NOT NULL COMMENT 'Calculate off subtotal option', PRIMARY KEY (`tax_calculation_rule_id`), KEY `IDX_[[DBPREFIX]]TAX_CALC_RULE_PRIORITY_POSITION_TAX_CALC_RULE_ID` (`priority`,`position`,`tax_calculation_rule_id`), KEY `IDX_[[DBPREFIX]]TAX_CALCULATION_RULE_CODE` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_calculation_rule` --
LOCK TABLES `[[dbprefix]]tax_calculation_rule` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rule` DISABLE KEYS */; INSERT INTO `[[dbprefix]]tax_calculation_rule` VALUES (1,'Retail Customer-Taxable Goods-Rate 1',1,1,0); /*!40000 ALTER TABLE `[[dbprefix]]tax_calculation_rule` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_class` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_class`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_class` ( `class_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Class Id', `class_name` varchar(255) NOT NULL COMMENT 'Class Name', `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type', PRIMARY KEY (`class_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Tax Class'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_class` --
LOCK TABLES `[[dbprefix]]tax_class` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_class` DISABLE KEYS */; INSERT INTO `[[dbprefix]]tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER'),(4,'Shipping','PRODUCT'); /*!40000 ALTER TABLE `[[dbprefix]]tax_class` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_order_aggregated_created` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_order_aggregated_created`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_order_aggregated_created` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id', `code` varchar(255) NOT NULL COMMENT 'Code', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `percent` float DEFAULT NULL COMMENT 'Percent', `orders_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count', `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum', PRIMARY KEY (`id`), UNIQUE KEY `A719D9444F7B979B92D2369CE724F9D0` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `IDX_[[DBPREFIX]]TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`), CONSTRAINT `FK_1D9D291B678B80800BE74BA8FAFB5DD0` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_order_aggregated_created` --
LOCK TABLES `[[dbprefix]]tax_order_aggregated_created` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_created` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_created` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tax_order_aggregated_updated` --
DROP TABLE IF EXISTS `[[dbprefix]]tax_order_aggregated_updated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tax_order_aggregated_updated` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id', `code` varchar(255) NOT NULL COMMENT 'Code', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `percent` float DEFAULT NULL COMMENT 'Percent', `orders_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Orders Count', `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum', PRIMARY KEY (`id`), UNIQUE KEY `6C22B67A5EB5D08555BC3FA3F54DD8F3` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `IDX_[[DBPREFIX]]TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`), CONSTRAINT `FK_DC3BA358A559D3355DC8F504B013E817` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Prmg Tax Order Aggregated Updated'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tax_order_aggregated_updated` --
LOCK TABLES `[[dbprefix]]tax_order_aggregated_updated` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tax_order_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]weee_discount` --
DROP TABLE IF EXISTS `[[dbprefix]]weee_discount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]weee_discount` ( `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Id', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value', KEY `IDX_[[DBPREFIX]]WEEE_DISCOUNT_WEBSITE_ID` (`website_id`), KEY `IDX_[[DBPREFIX]]WEEE_DISCOUNT_ENTITY_ID` (`entity_id`), KEY `IDX_[[DBPREFIX]]WEEE_DISCOUNT_CUSTOMER_GROUP_ID` (`customer_group_id`), CONSTRAINT `FK_E11955B83CC6A9788D623A77DBC53778` FOREIGN KEY (`customer_group_id`) REFERENCES `[[dbprefix]]customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WEEE_DISCOUNT_ENTT_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WEEE_DISCOUNT_WEBSITE_ID_[[DBPREFIX]]CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Discount'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]weee_discount` --
LOCK TABLES `[[dbprefix]]weee_discount` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]weee_discount` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]weee_discount` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]weee_tax` --
DROP TABLE IF EXISTS `[[dbprefix]]weee_tax`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]weee_tax` ( `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Id', `country` varchar(2) DEFAULT NULL COMMENT 'Country', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value', `state` varchar(255) NOT NULL DEFAULT '*' COMMENT 'State', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type Id', PRIMARY KEY (`value_id`), KEY `IDX_[[DBPREFIX]]WEEE_TAX_WEBSITE_ID` (`website_id`), KEY `IDX_[[DBPREFIX]]WEEE_TAX_ENTITY_ID` (`entity_id`), KEY `IDX_[[DBPREFIX]]WEEE_TAX_COUNTRY` (`country`), KEY `IDX_[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `FK_[[DBPREFIX]]WEEE_TAX_COUNTRY_[[DBPREFIX]]DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `[[dbprefix]]directory_country` (`country_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WEEE_TAX_ENTITY_ID_[[DBPREFIX]]CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WEEE_TAX_WEBSITE_ID_[[DBPREFIX]]CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID_[[DBPREFIX]]EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]weee_tax` --
LOCK TABLES `[[dbprefix]]weee_tax` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]weee_tax` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]weee_tax` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]widget` --
DROP TABLE IF EXISTS `[[dbprefix]]widget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]widget` ( `widget_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Widget Id', `widget_code` varchar(255) DEFAULT NULL COMMENT 'Widget code for template directive', `widget_type` varchar(255) DEFAULT NULL COMMENT 'Widget Type', `parameters` text COMMENT 'Parameters', PRIMARY KEY (`widget_id`), KEY `IDX_[[DBPREFIX]]WIDGET_WIDGET_CODE` (`widget_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]widget` --
LOCK TABLES `[[dbprefix]]widget` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]widget` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]widget` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]widget_instance` --
DROP TABLE IF EXISTS `[[dbprefix]]widget_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]widget_instance` ( `instance_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance Id', `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type', `package_theme` varchar(255) DEFAULT NULL COMMENT 'Package Theme', `title` varchar(255) DEFAULT NULL COMMENT 'Widget Title', `store_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Store ids', `widget_parameters` text COMMENT 'Widget parameters', `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order', PRIMARY KEY (`instance_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]widget_instance` --
LOCK TABLES `[[dbprefix]]widget_instance` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]widget_instance_page` --
DROP TABLE IF EXISTS `[[dbprefix]]widget_instance_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]widget_instance_page` ( `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page Id', `instance_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Id', `page_group` varchar(25) DEFAULT NULL COMMENT 'Block Group Type', `layout_handle` varchar(255) DEFAULT NULL COMMENT 'Layout Handle', `block_reference` varchar(255) DEFAULT NULL COMMENT 'Block Reference', `page_for` varchar(25) DEFAULT NULL COMMENT 'For instance entities', `entities` text COMMENT 'Catalog entities (comma separated)', `page_template` varchar(255) DEFAULT NULL COMMENT 'Path to widget template', PRIMARY KEY (`page_id`), KEY `IDX_[[DBPREFIX]]WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`), CONSTRAINT `FK_8CEB8E4A49C1C3B5DA3955BA7D727D5D` FOREIGN KEY (`instance_id`) REFERENCES `[[dbprefix]]widget_instance` (`instance_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]widget_instance_page` --
LOCK TABLES `[[dbprefix]]widget_instance_page` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]widget_instance_page_layout` --
DROP TABLE IF EXISTS `[[dbprefix]]widget_instance_page_layout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]widget_instance_page_layout` ( `page_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Page Id', `layout_update_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update Id', UNIQUE KEY `UNQ_[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID_PAGE_ID` (`layout_update_id`,`page_id`), KEY `IDX_[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`), KEY `IDX_[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID` (`layout_update_id`), CONSTRAINT `FK_4A92EC86A64E5198C495C2359162AD22` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]widget_instance_page` (`page_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_06D8E5FC2C005C362C6D76D9F1193D5B` FOREIGN KEY (`layout_update_id`) REFERENCES `[[dbprefix]]core_layout_update` (`layout_update_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]widget_instance_page_layout` --
LOCK TABLES `[[dbprefix]]widget_instance_page_layout` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page_layout` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]widget_instance_page_layout` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]wishlist` --
DROP TABLE IF EXISTS `[[dbprefix]]wishlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]wishlist` ( `wishlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID', `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `shared` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sharing flag (0 or 1)', `sharing_code` varchar(32) DEFAULT NULL COMMENT 'Sharing encrypted code', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Last updated date', PRIMARY KEY (`wishlist_id`), UNIQUE KEY `UNQ_[[DBPREFIX]]WISHLIST_CUSTOMER_ID` (`customer_id`), KEY `IDX_[[DBPREFIX]]WISHLIST_SHARED` (`shared`), CONSTRAINT `FK_[[DBPREFIX]]WISHLIST_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]wishlist` --
LOCK TABLES `[[dbprefix]]wishlist` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]wishlist` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]wishlist_item` --
DROP TABLE IF EXISTS `[[dbprefix]]wishlist_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]wishlist_item` ( `wishlist_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID', `wishlist_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Wishlist ID', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID', `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time', `description` text COMMENT 'Short description of wish list item', `qty` decimal(12,4) NOT NULL COMMENT 'Qty', PRIMARY KEY (`wishlist_item_id`), KEY `IDX_[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`), KEY `IDX_[[DBPREFIX]]WISHLIST_ITEM_PRODUCT_ID` (`product_id`), KEY `IDX_[[DBPREFIX]]WISHLIST_ITEM_STORE_ID` (`store_id`), CONSTRAINT `FK_[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID_[[DBPREFIX]]WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `[[dbprefix]]wishlist` (`wishlist_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WISHLIST_ITEM_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_[[DBPREFIX]]WISHLIST_ITEM_STORE_ID_[[DBPREFIX]]CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist items'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]wishlist_item` --
LOCK TABLES `[[dbprefix]]wishlist_item` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]wishlist_item` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]wishlist_item` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]wishlist_item_option` --
DROP TABLE IF EXISTS `[[dbprefix]]wishlist_item_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]wishlist_item_option` ( `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Id', `wishlist_item_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Item Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `code` varchar(255) NOT NULL COMMENT 'Code', `value` text COMMENT 'Value', PRIMARY KEY (`option_id`), KEY `FK_50A2E7BB0F31EC0BC615E7F5040A12AC` (`wishlist_item_id`), CONSTRAINT `FK_50A2E7BB0F31EC0BC615E7F5040A12AC` FOREIGN KEY (`wishlist_item_id`) REFERENCES `[[dbprefix]]wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]wishlist_item_option` --
LOCK TABLES `[[dbprefix]]wishlist_item_option` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]wishlist_item_option` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]wishlist_item_option` ENABLE KEYS */; UNLOCK TABLES;
-- -- Dumping routines for database 'mage1945' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;