IP : 3.145.100.245Hostname : 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/
myadmin49/
../
mantis/
../
magento241/
magento241.sql/
/
-- MySQL dump 10.13 Distrib 5.7.33, for Linux (x86_64) -- -- Host: localhost Database: script_mage241p1 -- ------------------------------------------------------ -- Server version 5.7.33
/*!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_analytics_usage_version_log` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_analytics_usage_version_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_analytics_usage_version_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version', PRIMARY KEY (`id`), UNIQUE KEY `[[DBPREFIX]]ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Notification Viewer Log Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_analytics_usage_version_log` --
LOCK TABLES `[[dbprefix]]admin_analytics_usage_version_log` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]admin_analytics_usage_version_log` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_passwords` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_passwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_passwords` ( `password_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID', `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID', `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash', `expires` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Deprecated', `last_updated` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated', PRIMARY KEY (`password_id`), KEY `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID` (`user_id`), CONSTRAINT `[[DBPREFIX]]ADMIN_PASSWORDS_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Passwords'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_passwords` --
LOCK TABLES `[[dbprefix]]admin_passwords` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` DISABLE KEYS */; INSERT INTO `[[dbprefix]]admin_passwords` VALUES (1,1,'[[admin_pass]]',0,[[timestamp]]); /*!40000 ALTER TABLE `[[dbprefix]]admin_passwords` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_system_messages` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_system_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_system_messages` ( `identity` varchar(100) NOT NULL COMMENT 'Message ID', `severity` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date', PRIMARY KEY (`identity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin System Messages'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_system_messages` --
LOCK TABLES `[[dbprefix]]admin_system_messages` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]admin_system_messages` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_user` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_user` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'User ID', `firstname` varchar(32) DEFAULT NULL COMMENT 'User First Name', `lastname` varchar(32) DEFAULT NULL COMMENT 'User Last Name', `email` varchar(128) DEFAULT NULL COMMENT 'User Email', `username` varchar(40) DEFAULT NULL COMMENT 'User Login', `password` varchar(255) NOT NULL COMMENT 'User Password', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'User Created Time', `modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'User Modified Time', `logdate` timestamp NULL DEFAULT NULL COMMENT 'User Last Login Time', `lognum` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'User Login Number', `reload_acl_flag` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Reload ACL', `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'User Is Active', `extra` text COMMENT 'User Extra Data', `rp_token` text COMMENT 'Reset Password Link Token', `rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date', `interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale', `failures_num` smallint(6) DEFAULT '0' COMMENT 'Failure Number', `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure', `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates', `refresh_token` text COMMENT 'Email connector refresh token', PRIMARY KEY (`user_id`), UNIQUE KEY `[[DBPREFIX]]ADMIN_USER_USERNAME` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin User Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_user` --
LOCK TABLES `[[dbprefix]]admin_user` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_user` DISABLE KEYS */; INSERT INTO `[[dbprefix]]admin_user` VALUES (1,'[[admin_fname]]','[[admin_lname]]','[[admin_email]]','[[admin_username]]','[[admin_pass]]','[[regtime]]','[[regtime]]',NULL,0,0,1,NULL,NULL,NULL,'en_US',0,NULL,NULL,NULL); /*!40000 ALTER TABLE `[[dbprefix]]admin_user` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_user_expiration` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_user_expiration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_user_expiration` ( `user_id` int(10) unsigned NOT NULL COMMENT 'User ID', `expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date', PRIMARY KEY (`user_id`), CONSTRAINT `[[DBPREFIX]]ADMIN_USER_EXPIRATION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User expiration dates table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_user_expiration` --
LOCK TABLES `[[dbprefix]]admin_user_expiration` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]admin_user_expiration` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]admin_user_session` --
DROP TABLE IF EXISTS `[[dbprefix]]admin_user_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]admin_user_session` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `session_id` varchar(128) NOT NULL COMMENT 'Session ID value', `user_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin User ID', `status` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Current Session status', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created Time', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time', `ip` varchar(15) NOT NULL COMMENT 'Remote user IP', PRIMARY KEY (`id`), KEY `[[DBPREFIX]]ADMIN_USER_SESSION_SESSION_ID` (`session_id`), KEY `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID` (`user_id`), CONSTRAINT `[[DBPREFIX]]ADMIN_USER_SESSION_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User sessions table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]admin_user_session` --
LOCK TABLES `[[dbprefix]]admin_user_session` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]admin_user_session` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]adminnotification_inbox` --
DROP TABLE IF EXISTS `[[dbprefix]]adminnotification_inbox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]adminnotification_inbox` ( `notification_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID', `severity` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Problem type', `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Create date', `title` varchar(255) NOT NULL COMMENT 'Title', `description` text COMMENT 'Description', `url` varchar(255) DEFAULT NULL COMMENT 'Url', `is_read` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification read', `is_remove` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification might be removed', PRIMARY KEY (`notification_id`), KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`), KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`), KEY `[[DBPREFIX]]ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]adminnotification_inbox` --
LOCK TABLES `[[dbprefix]]adminnotification_inbox` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` DISABLE KEYS */; INSERT INTO `[[dbprefix]]adminnotification_inbox` VALUES (1,4,'[[regtime]]','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',0,0); /*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]adobe_stock_asset` --
-- -- Dumping data for table `[[dbprefix]]catalogrule_product_replica` --
LOCK TABLES `[[dbprefix]]catalogrule_product_replica` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]catalogrule_product_replica` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]catalogrule_website` --
DROP TABLE IF EXISTS `[[dbprefix]]catalogrule_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]catalogrule_website` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`rule_id`,`website_id`), KEY `[[DBPREFIX]]CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`), CONSTRAINT `[[DBPREFIX]]CATALOGRULE_WEBSITE_RULE_ID_[[DBPREFIX]]CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]catalogrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CATRULE_WS_WS_ID_[[DBPREFIX]]STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]catalogrule_website` --
LOCK TABLES `[[dbprefix]]catalogrule_website` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]catalogrule_website` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]catalogrule_website` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]catalogsearch_recommendations` --
DROP TABLE IF EXISTS `[[dbprefix]]catalogsearch_recommendations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]catalogsearch_recommendations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `query_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Query ID', `relation_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Relation ID', PRIMARY KEY (`id`), KEY `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_QR_ID_[[DBPREFIX]]SRCH_QR_QR_ID` (`query_id`), KEY `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_RELATION_ID_[[DBPREFIX]]SRCH_QR_QR_ID` (`relation_id`), CONSTRAINT `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_QR_ID_[[DBPREFIX]]SRCH_QR_QR_ID` FOREIGN KEY (`query_id`) REFERENCES `[[dbprefix]]search_query` (`query_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CATSRCH_RECOMMENDATIONS_RELATION_ID_[[DBPREFIX]]SRCH_QR_QR_ID` FOREIGN KEY (`relation_id`) REFERENCES `[[dbprefix]]search_query` (`query_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Advanced Search Recommendations'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]catalogsearch_recommendations` --
LOCK TABLES `[[dbprefix]]catalogsearch_recommendations` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_recommendations` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_recommendations` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]checkout_agreement` --
DROP TABLE IF EXISTS `[[dbprefix]]checkout_agreement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]checkout_agreement` ( `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `content` text COMMENT 'Content', `content_height` varchar(25) DEFAULT NULL COMMENT 'Content Height', `checkbox_text` text COMMENT 'Checkbox Text', `is_active` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Active', `is_html` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Html', `mode` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Applied mode', PRIMARY KEY (`agreement_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]checkout_agreement` --
LOCK TABLES `[[dbprefix]]checkout_agreement` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]checkout_agreement_store` --
DROP TABLE IF EXISTS `[[dbprefix]]checkout_agreement_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]checkout_agreement_store` ( `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`agreement_id`,`store_id`), KEY `[[DBPREFIX]]CHECKOUT_AGREEMENT_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]CHECKOUT_AGREEMENT_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CHKT_AGRT_STORE_AGRT_ID_[[DBPREFIX]]CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `[[dbprefix]]checkout_agreement` (`agreement_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]checkout_agreement_store` --
LOCK TABLES `[[dbprefix]]checkout_agreement_store` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement_store` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]checkout_agreement_store` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]cms_block` --
DROP TABLE IF EXISTS `[[dbprefix]]cms_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]cms_block` ( `block_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `title` varchar(255) NOT NULL COMMENT 'Block Title', `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier', `content` mediumtext COMMENT 'Block Content', `creation_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Block Creation Time', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Block Modification Time', `is_active` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Block Active', PRIMARY KEY (`block_id`), FULLTEXT KEY `[[DBPREFIX]]CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]cms_block` --
LOCK TABLES `[[dbprefix]]cms_block` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]cms_block` DISABLE KEYS */; /*!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, `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`block_id`,`store_id`), KEY `[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]CMS_BLOCK_STORE_BLOCK_ID_[[DBPREFIX]]CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `[[dbprefix]]cms_block` (`block_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE 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 */; /*!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 'Entity ID', `title` varchar(255) DEFAULT NULL COMMENT 'Page Title', `page_layout` varchar(255) DEFAULT NULL COMMENT 'Page Layout', `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 NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Page Creation Time', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `layout_update_selected` varchar(128) DEFAULT NULL COMMENT 'Page Custom Layout File', `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', `meta_title` varchar(255) DEFAULT NULL COMMENT 'Page Meta Title', PRIMARY KEY (`page_id`), KEY `[[DBPREFIX]]CMS_PAGE_IDENTIFIER` (`identifier`), FULLTEXT KEY `FTI_2B3F6DC425D914597AB7E76AC87078A1` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`) ) ENGINE=InnoDB AUTO_INCREMENT=5 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','2columns-right','Page keywords','Page description','no-route','Whoops, our bad...','<dl>\r\n<dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n<li>If you clicked on a link to get here, the link is outdated.</li>\r\n</ul></dd>\r\n</dl>\r\n<dl>\r\n<dt>What can you do?</dt>\r\n<dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n<li>Use the search bar at the top of the page to search for your products.</li>\r\n<li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a> <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl>\r\n','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home page','1column',NULL,NULL,'home','Home Page','<p>CMS homepage content goes here.</p>\r\n','[[regtime]]','[[regtime]]',1,0,'<!--\n <referenceContainer name=\"right\">\n <referenceBlock name=\"catalog.compare.sidebar\" remove=\"true\" />\n </referenceContainer>-->',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,'Enable Cookies','1column',NULL,NULL,'enable-cookies','What are Cookies?','<div class=\"enable-cookies cms-content\">\r\n<p>\"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.</p>\r\n<p style=\"margin-bottom: 20px;\">Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:</p>\r\n<ul>\r\n<li><a href=\"https://support.google.com/accounts/answer/61416?hl=en\" target=\"_blank\">Google Chrome</a></li>\r\n<li><a href=\"http://windows.microsoft.com/en-us/internet-explorer/delete-manage-cookies\" target=\"_blank\">Internet Explorer</a></li>\r\n<li><a href=\"http://support.apple.com/kb/PH19214\" target=\"_blank\">Safari</a></li>\r\n<li><a href=\"https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences\" target=\"_blank\">Mozilla/Firefox</a></li>\r\n</ul>\r\n</div>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Privacy and Cookie Policy','1column',NULL,NULL,'privacy-policy-cookie-restriction-mode','Privacy and Cookie Policy','<div class=\"privacy-policy cms-content\">\n <div class=\"message info\">\n <span>\n Please replace this text with you Privacy Policy.\n Please add any additional cookies your website uses below (e.g. Google Analytics).\n </span>\n </div>\n <p>\n This privacy policy sets out how this website (hereafter \"the Store\") uses and protects any information that\n you give the Store while using this website. The Store 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, then\n you can be assured that it will only be used in accordance with this privacy statement. The Store may change\n this policy from time to time by updating this page. You should check this page from time to time to ensure\n 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\n disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and\n secure 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\n traffic and improve our website in order to tailor it to customer needs. We only use this information for\n statistical 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\n useful 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 letting us know using our Contact Us information\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 email us this\n request using our Contact Us information.\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 data-table-definition-list\">\n <thead>\n <tr>\n <th>Cookie Name</th>\n <th>Cookie Description</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>FORM_KEY</th>\n <td>Stores randomly generated key used to prevent forged requests.</td>\n </tr>\n <tr>\n <th>PHPSESSID</th>\n <td>Your session ID on the server.</td>\n </tr>\n <tr>\n <th>GUEST-VIEW</th>\n <td>Allows guests to view and edit their orders.</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 for this.</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>MAGE-CACHE-SESSID</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>MAGE-CACHE-STORAGE</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>MAGE-CACHE-STORAGE-SECTION-INVALIDATION</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>MAGE-CACHE-TIMEOUT</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>SECTION-DATA-IDS</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>PRIVATE_CONTENT_VERSION</th>\n <td>Facilitates caching of content on the browser to make pages load faster.</td>\n </tr>\n <tr>\n <th>X-MAGENTO-VARY</th>\n <td>Facilitates caching of content on the server to make pages load faster.</td>\n </tr>\n <tr>\n <th>MAGE-TRANSLATION-FILE-VERSION</th>\n <td>Facilitates translation of content to other languages.</td>\n </tr>\n <tr>\n <th>MAGE-TRANSLATION-STORAGE</th>\n <td>Facilitates translation of content to other languages.</td>\n </tr>\n </tbody>\n </table>\n</div>','[[regtime]]','[[regtime]]',1,0,NULL,NULL,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 'Entity ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`page_id`,`store_id`), KEY `[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]CMS_PAGE_STORE_PAGE_ID_[[DBPREFIX]]CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]cms_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE 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); /*!40000 ALTER TABLE `[[dbprefix]]cms_page_store` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]core_config_data` --
DROP TABLE IF EXISTS `[[dbprefix]]core_config_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]core_config_data` ( `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config ID', `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope', `scope_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Config Scope ID', `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path', `value` text COMMENT 'Config Value', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`config_id`), UNIQUE KEY `[[DBPREFIX]]CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`) ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COMMENT='Config Data'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]core_config_data` --
-- -- Dumping data for table `[[dbprefix]]email_wishlist` --
LOCK TABLES `[[dbprefix]]email_wishlist` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]email_wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]email_wishlist` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]flag` --
DROP TABLE IF EXISTS `[[dbprefix]]flag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]flag` ( `flag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id', `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code', `state` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Flag State', `flag_data` mediumtext COMMENT 'Flag Data', `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Last Flag Update', PRIMARY KEY (`flag_id`), KEY `[[DBPREFIX]]FLAG_LAST_UPDATE` (`last_update`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Flag'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]flag` --
LOCK TABLES `[[dbprefix]]flag` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]flag` DISABLE KEYS */; INSERT INTO `[[dbprefix]]flag` VALUES (1,'analytics_link_attempts_reverse_counter',0,'24','[[regtime]]'); /*!40000 ALTER TABLE `[[dbprefix]]flag` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]gift_message` --
DROP TABLE IF EXISTS `[[dbprefix]]gift_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]gift_message` ( `gift_message_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID', `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `sender` varchar(255) DEFAULT NULL COMMENT 'Sender', `recipient` varchar(255) DEFAULT NULL COMMENT 'Registrant', `message` text COMMENT 'Message', PRIMARY KEY (`gift_message_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]gift_message` --
LOCK TABLES `[[dbprefix]]gift_message` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]gift_message` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]gift_message` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]googleoptimizer_code` --
DROP TABLE IF EXISTS `[[dbprefix]]googleoptimizer_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]googleoptimizer_code` ( `code_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID', `entity_id` int(10) unsigned NOT NULL COMMENT 'Optimized entity ID product ID or catalog ID', `entity_type` varchar(50) DEFAULT NULL COMMENT 'Optimized entity type', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `experiment_script` text COMMENT 'Google experiment script', PRIMARY KEY (`code_id`), UNIQUE KEY `[[DBPREFIX]]GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`), CONSTRAINT `[[DBPREFIX]]GOOGLEOPTIMIZER_CODE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Experiment code'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]googleoptimizer_code` --
LOCK TABLES `[[dbprefix]]googleoptimizer_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]googleoptimizer_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]googleoptimizer_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]import_history` --
DROP TABLE IF EXISTS `[[dbprefix]]import_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]import_history` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record ID', `started_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Started at', `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID', `imported_file` varchar(255) DEFAULT NULL COMMENT 'Imported file', `execution_time` varchar(255) DEFAULT NULL COMMENT 'Execution time', `summary` varchar(255) DEFAULT NULL COMMENT 'Summary', `error_file` varchar(255) NOT NULL COMMENT 'Imported file with errors', PRIMARY KEY (`history_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import history table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]import_history` --
LOCK TABLES `[[dbprefix]]import_history` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]import_history` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]import_history` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]importexport_importdata` --
DROP TABLE IF EXISTS `[[dbprefix]]importexport_importdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]importexport_importdata` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `entity` varchar(50) NOT NULL COMMENT 'Entity', `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior', `data` longtext COMMENT 'Data', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]importexport_importdata` --
LOCK TABLES `[[dbprefix]]importexport_importdata` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]importexport_importdata` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]importexport_importdata` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]indexer_state` --
DROP TABLE IF EXISTS `[[dbprefix]]indexer_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]indexer_state` ( `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Indexer State ID', `indexer_id` varchar(255) DEFAULT NULL COMMENT 'Indexer ID', `status` varchar(16) DEFAULT 'invalid' COMMENT 'Indexer Status', `updated` datetime DEFAULT NULL COMMENT 'Indexer Status', `hash_config` varchar(32) NOT NULL COMMENT 'Hash of indexer config', PRIMARY KEY (`state_id`), KEY `[[DBPREFIX]]INDEXER_STATE_INDEXER_ID` (`indexer_id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Indexer State'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]indexer_state` --
LOCK TABLES `[[dbprefix]]indexer_state` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]indexer_state` DISABLE KEYS */; INSERT INTO `[[dbprefix]]indexer_state` VALUES (1,'design_config_grid','valid','[[regtime]]','1d1a5fe756724c04679475a61e264b80'),(2,'customer_grid','valid','[[regtime]]','c6cf5d6a0fac7666b2263adff60655de'),(3,'catalog_category_product','invalid','[[regtime]]','dd218c1d68d4ccb3eebbf650e90752fe'),(4,'catalog_product_category','invalid','[[regtime]]','a0ecc83079e031c7b0312c62f7b03aeb'),(5,'catalogrule_rule','invalid','[[regtime]]','dcba5cd6ff340e54aa31bc7bf69c1d8e'),(6,'catalog_product_attribute','invalid','[[regtime]]','de46d75c0bf489e22131ab115ac0efa3'),(7,'cataloginventory_stock','invalid','[[regtime]]','e9661853e6dc74ffd799de36dccb9be2'),(8,'inventory','invalid','[[regtime]]','537e2bef7c9782018190b21f84250b69'),(9,'catalogrule_product','invalid','[[regtime]]','787d570035a2eaa024a5fafa493fb19f'),(10,'catalog_product_price','invalid','[[regtime]]','2316a7461061cdb9cb2bcf457a86ee06'),(11,'catalogsearch_fulltext','invalid','[[regtime]]','32b472438573118a324e83d376e3b129'); /*!40000 ALTER TABLE `[[dbprefix]]indexer_state` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]integration` --
DROP TABLE IF EXISTS `[[dbprefix]]integration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]integration` ( `integration_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID', `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface', `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person', `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials', `status` smallint(5) unsigned NOT NULL COMMENT 'Integration status', `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth consumer', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time', `setup_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Integration type - manual or config file', `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url', PRIMARY KEY (`integration_id`), UNIQUE KEY `[[DBPREFIX]]INTEGRATION_NAME` (`name`), UNIQUE KEY `[[DBPREFIX]]INTEGRATION_CONSUMER_ID` (`consumer_id`), CONSTRAINT `[[DBPREFIX]]INTEGRATION_CONSUMER_ID_[[DBPREFIX]]OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `[[dbprefix]]oauth_consumer` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='integration'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]integration` --
LOCK TABLES `[[dbprefix]]integration` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]integration` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]integration` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_geoname` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_geoname`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_geoname` ( `country_code` varchar(64) NOT NULL, `postcode` varchar(64) NOT NULL, `city` varchar(180) NOT NULL, `region` varchar(100) NOT NULL, `province` varchar(64) NOT NULL, `latitude` double NOT NULL, `longitude` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_geoname` --
LOCK TABLES `[[dbprefix]]inventory_geoname` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_geoname` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_geoname` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_low_stock_notification_configuration` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_low_stock_notification_configuration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` ( `source_code` varchar(255) NOT NULL, `sku` varchar(64) NOT NULL, `notify_stock_qty` decimal(12,4) DEFAULT NULL, PRIMARY KEY (`source_code`,`sku`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_low_stock_notification_configuration` --
LOCK TABLES `[[dbprefix]]inventory_low_stock_notification_configuration` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_low_stock_notification_configuration` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_order_notification` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_order_notification`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_order_notification` ( `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID', `notification_sent` smallint(6) NOT NULL COMMENT 'Has Notification Been Sent For Order', `send_notification` smallint(6) NOT NULL COMMENT 'Should Notification Be Send For Order', PRIMARY KEY (`order_id`), CONSTRAINT `[[DBPREFIX]]INV_ORDER_NTFC_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_order_notification` --
LOCK TABLES `[[dbprefix]]inventory_order_notification` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_order_notification` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_order_notification` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_pickup_location_order` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_pickup_location_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_pickup_location_order` ( `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID', `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code', PRIMARY KEY (`order_id`), CONSTRAINT `[[DBPREFIX]]INV_PICKUP_LOCATION_ORDER_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_pickup_location_order` --
LOCK TABLES `[[dbprefix]]inventory_pickup_location_order` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_order` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_order` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_pickup_location_quote_address` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_pickup_location_quote_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_pickup_location_quote_address` ( `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Quote Address ID', `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code', PRIMARY KEY (`address_id`), CONSTRAINT `FK_453C43AC6463D44FB8D9AEE93F8D5368` FOREIGN KEY (`address_id`) REFERENCES `[[dbprefix]]quote_address` (`address_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_pickup_location_quote_address` --
LOCK TABLES `[[dbprefix]]inventory_pickup_location_quote_address` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_quote_address` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_pickup_location_quote_address` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_reservation` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_reservation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_reservation` ( `reservation_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `stock_id` int(10) unsigned NOT NULL, `sku` varchar(64) NOT NULL, `quantity` decimal(10,4) NOT NULL DEFAULT '0.0000', `metadata` varchar(255) DEFAULT NULL, PRIMARY KEY (`reservation_id`), KEY `[[DBPREFIX]]INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_reservation` --
LOCK TABLES `[[dbprefix]]inventory_reservation` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_reservation` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_reservation` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_shipment_source` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_shipment_source`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_shipment_source` ( `shipment_id` int(10) unsigned NOT NULL, `source_code` varchar(255) NOT NULL, PRIMARY KEY (`shipment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_shipment_source` --
LOCK TABLES `[[dbprefix]]inventory_shipment_source` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_shipment_source` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_shipment_source` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_source` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_source`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_source` ( `source_code` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `enabled` smallint(5) unsigned NOT NULL DEFAULT '1', `description` text, `latitude` decimal(8,6) DEFAULT NULL, `longitude` decimal(9,6) DEFAULT NULL, `country_id` varchar(2) NOT NULL, `region_id` int(10) unsigned DEFAULT NULL, `region` varchar(255) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `street` varchar(255) DEFAULT NULL, `postcode` varchar(255) NOT NULL, `contact_name` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `fax` varchar(255) DEFAULT NULL, `use_default_carrier_config` smallint(5) unsigned NOT NULL DEFAULT '1', `is_pickup_location_active` tinyint(1) NOT NULL DEFAULT '0', `frontend_name` varchar(255) DEFAULT '', `frontend_description` text, PRIMARY KEY (`source_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_source` --
LOCK TABLES `[[dbprefix]]inventory_source` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source` DISABLE KEYS */; INSERT INTO `[[dbprefix]]inventory_source` VALUES ('default','Default Source',1,'Default Source',0.000000,0.000000,'US',NULL,NULL,NULL,NULL,'00000',NULL,NULL,NULL,NULL,1,0,'',NULL); /*!40000 ALTER TABLE `[[dbprefix]]inventory_source` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_source_carrier_link` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_carrier_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_source_carrier_link` ( `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `source_code` varchar(255) NOT NULL, `carrier_code` varchar(255) NOT NULL, `position` smallint(5) unsigned DEFAULT NULL, PRIMARY KEY (`link_id`), KEY `FK_895099EF516A80F7577B3E11E0D49D35` (`source_code`), CONSTRAINT `FK_895099EF516A80F7577B3E11E0D49D35` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_source_carrier_link` --
LOCK TABLES `[[dbprefix]]inventory_source_carrier_link` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_carrier_link` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_carrier_link` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_source_item` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_source_item` ( `source_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `source_code` varchar(255) NOT NULL, `sku` varchar(64) NOT NULL, `quantity` decimal(12,4) NOT NULL DEFAULT '0.0000', `status` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`source_item_id`), UNIQUE KEY `[[DBPREFIX]]INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`), KEY `[[DBPREFIX]]INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`), CONSTRAINT `[[DBPREFIX]]INV_SOURCE_ITEM_SOURCE_CODE_[[DBPREFIX]]INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_source_item` --
LOCK TABLES `[[dbprefix]]inventory_source_item` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_item` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_item` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_source_stock_link` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_source_stock_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_source_stock_link` ( `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `stock_id` int(10) unsigned NOT NULL, `source_code` varchar(255) NOT NULL, `priority` smallint(5) unsigned NOT NULL, PRIMARY KEY (`link_id`), UNIQUE KEY `[[DBPREFIX]]INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`), KEY `FK_A7FCEDA59E4EE5A11A6AD98F0A9B364F` (`source_code`), KEY `[[DBPREFIX]]INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`), CONSTRAINT `FK_A7FCEDA59E4EE5A11A6AD98F0A9B364F` FOREIGN KEY (`source_code`) REFERENCES `[[dbprefix]]inventory_source` (`source_code`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]INV_SOURCE_STOCK_LNK_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `[[dbprefix]]inventory_stock` (`stock_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_source_stock_link` --
LOCK TABLES `[[dbprefix]]inventory_source_stock_link` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_stock_link` DISABLE KEYS */; INSERT INTO `[[dbprefix]]inventory_source_stock_link` VALUES (1,1,'default',1); /*!40000 ALTER TABLE `[[dbprefix]]inventory_source_stock_link` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]inventory_stock` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_stock` ( `stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, PRIMARY KEY (`stock_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_stock` --
LOCK TABLES `[[dbprefix]]inventory_stock` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_stock` DISABLE KEYS */; INSERT INTO `[[dbprefix]]inventory_stock` VALUES (1,'Default Stock'); /*!40000 ALTER TABLE `[[dbprefix]]inventory_stock` ENABLE KEYS */; UNLOCK TABLES;
-- -- Temporary table structure for view `[[dbprefix]]inventory_stock_1` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock_1`; /*!50001 DROP VIEW IF EXISTS `[[dbprefix]]inventory_stock_1`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `[[dbprefix]]inventory_stock_1` AS SELECT 1 AS `product_id`, 1 AS `website_id`, 1 AS `stock_id`, 1 AS `quantity`, 1 AS `is_salable`, 1 AS `sku`*/; SET character_set_client = @saved_cs_client;
-- -- Table structure for table `[[dbprefix]]inventory_stock_sales_channel` --
DROP TABLE IF EXISTS `[[dbprefix]]inventory_stock_sales_channel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]inventory_stock_sales_channel` ( `type` varchar(64) NOT NULL, `code` varchar(64) NOT NULL, `stock_id` int(10) unsigned NOT NULL, PRIMARY KEY (`type`,`code`), KEY `[[DBPREFIX]]INV_STOCK_SALES_CHANNEL_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` (`stock_id`), CONSTRAINT `[[DBPREFIX]]INV_STOCK_SALES_CHANNEL_STOCK_ID_[[DBPREFIX]]INV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `[[dbprefix]]inventory_stock` (`stock_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]inventory_stock_sales_channel` --
LOCK TABLES `[[dbprefix]]inventory_stock_sales_channel` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]inventory_stock_sales_channel` DISABLE KEYS */; INSERT INTO `[[dbprefix]]inventory_stock_sales_channel` VALUES ('website','base',1); /*!40000 ALTER TABLE `[[dbprefix]]inventory_stock_sales_channel` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]klarna_core_order` --
DROP TABLE IF EXISTS `[[dbprefix]]klarna_core_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]klarna_core_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Id', `klarna_order_id` varchar(255) DEFAULT NULL COMMENT 'Klarna Order Id', `session_id` varchar(255) DEFAULT NULL COMMENT 'Session Id', `reservation_id` varchar(255) DEFAULT NULL COMMENT 'Reservation Id', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `is_acknowledged` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Acknowledged', PRIMARY KEY (`id`), KEY `[[DBPREFIX]]KLARNA_CORE_ORDER_IS_ACKNOWLEDGED` (`is_acknowledged`), KEY `[[DBPREFIX]]KLARNA_CORE_ORDER_ORDER_ID` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Klarna Order'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]klarna_core_order` --
LOCK TABLES `[[dbprefix]]klarna_core_order` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]klarna_core_order` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]klarna_core_order` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]klarna_payments_quote` --
-- -- Dumping data for table `[[dbprefix]]klarna_payments_quote` --
LOCK TABLES `[[dbprefix]]klarna_payments_quote` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]klarna_payments_quote` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]klarna_payments_quote` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]layout_link` --
DROP TABLE IF EXISTS `[[dbprefix]]layout_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]layout_link` ( `layout_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID', `layout_update_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update ID', `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Defines whether Layout Update is Temporary', PRIMARY KEY (`layout_link_id`), KEY `[[DBPREFIX]]LAYOUT_LINK_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`), KEY `[[DBPREFIX]]LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`), KEY `[[DBPREFIX]]LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`), CONSTRAINT `[[DBPREFIX]]LAYOUT_LINK_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]LAYOUT_LINK_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]LYT_LNK_LYT_UPDATE_ID_[[DBPREFIX]]LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `[[dbprefix]]layout_update` (`layout_update_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Link'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]layout_link` --
LOCK TABLES `[[dbprefix]]layout_link` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]layout_link` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]layout_link` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]layout_update` --
DROP TABLE IF EXISTS `[[dbprefix]]layout_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]layout_update` ( `layout_update_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID', `handle` varchar(255) DEFAULT NULL COMMENT 'Handle', `xml` text COMMENT 'Xml', `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order', `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Update Timestamp', PRIMARY KEY (`layout_update_id`), KEY `[[DBPREFIX]]LAYOUT_UPDATE_HANDLE` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Updates'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]layout_update` --
LOCK TABLES `[[dbprefix]]layout_update` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]layout_update` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]layout_update` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]login_as_customer` --
DROP TABLE IF EXISTS `[[dbprefix]]login_as_customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]login_as_customer` ( `secret` varchar(64) NOT NULL COMMENT 'Login Secret', `customer_id` int(11) NOT NULL COMMENT 'Customer ID', `admin_id` int(11) NOT NULL COMMENT 'Admin ID', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time', PRIMARY KEY (`secret`), KEY `[[DBPREFIX]]LOGIN_AS_CUSTOMER_CREATED_AT` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]login_as_customer` --
LOCK TABLES `[[dbprefix]]login_as_customer` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]login_as_customer` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]login_as_customer` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]login_as_customer_assistance_allowed` --
DROP TABLE IF EXISTS `[[dbprefix]]login_as_customer_assistance_allowed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]login_as_customer_assistance_allowed` ( `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID', UNIQUE KEY `[[DBPREFIX]]LOGIN_AS_CUSTOMER_ASSISTANCE_ALLOWED_CUSTOMER_ID` (`customer_id`), CONSTRAINT `FK_9A8E2AFC28B1513F453046DF7E9DBAFF` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Assistance Allowed Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]login_as_customer_assistance_allowed` --
LOCK TABLES `[[dbprefix]]login_as_customer_assistance_allowed` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]login_as_customer_assistance_allowed` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]login_as_customer_assistance_allowed` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]magento_acknowledged_bulk` --
DROP TABLE IF EXISTS `[[dbprefix]]magento_acknowledged_bulk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]magento_acknowledged_bulk` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID', `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID', PRIMARY KEY (`id`), UNIQUE KEY `[[DBPREFIX]]MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`), CONSTRAINT `[[DBPREFIX]]MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_[[DBPREFIX]]MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `[[dbprefix]]magento_bulk` (`uuid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk that was viewed by user from notification area'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]magento_acknowledged_bulk` --
LOCK TABLES `[[dbprefix]]magento_acknowledged_bulk` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]magento_acknowledged_bulk` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]magento_acknowledged_bulk` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]magento_bulk` --
DROP TABLE IF EXISTS `[[dbprefix]]magento_bulk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]magento_bulk` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)', `uuid` varbinary(39) DEFAULT NULL COMMENT 'Bulk UUID (can be exposed to reference bulk entity)', `user_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action', `user_type` int(11) DEFAULT NULL COMMENT 'Which type of user', `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description', `operation_count` int(10) unsigned NOT NULL COMMENT 'Total number of operations scheduled within this bulk', `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bulk start time', PRIMARY KEY (`id`), UNIQUE KEY `[[DBPREFIX]]MAGENTO_BULK_UUID` (`uuid`), KEY `[[DBPREFIX]]MAGENTO_BULK_USER_ID` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk entity that represents set of related asynchronous operations'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]magento_bulk` --
LOCK TABLES `[[dbprefix]]magento_bulk` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]magento_bulk` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]magento_bulk` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]magento_login_as_customer_log` --
-- -- Dumping data for table `[[dbprefix]]oauth_token` --
LOCK TABLES `[[dbprefix]]oauth_token` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]oauth_token` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]oauth_token` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]oauth_token_request_log` --
DROP TABLE IF EXISTS `[[dbprefix]]oauth_token_request_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]oauth_token_request_log` ( `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login', `user_type` smallint(5) unsigned NOT NULL COMMENT 'User type (admin or customer)', `failures_count` smallint(5) unsigned DEFAULT '0' COMMENT 'Number of failed authentication attempts in a row', `lock_expires_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Lock expiration time', PRIMARY KEY (`log_id`), UNIQUE KEY `[[DBPREFIX]]OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of token request authentication failures.'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]oauth_token_request_log` --
LOCK TABLES `[[dbprefix]]oauth_token_request_log` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]oauth_token_request_log` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]oauth_token_request_log` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]password_reset_request_event` --
DROP TABLE IF EXISTS `[[dbprefix]]password_reset_request_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]password_reset_request_event` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `request_type` smallint(5) unsigned NOT NULL COMMENT 'Type of the event under a security control', `account_reference` varchar(255) DEFAULT NULL COMMENT 'An identifier for existing account or another target', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp when the event occurs', `ip` varchar(15) NOT NULL COMMENT 'Remote user IP', PRIMARY KEY (`id`), KEY `[[DBPREFIX]]PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`), KEY `[[DBPREFIX]]PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Password Reset Request Event under a security control'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]password_reset_request_event` --
LOCK TABLES `[[dbprefix]]password_reset_request_event` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]password_reset_request_event` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]password_reset_request_event` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]patch_list` --
DROP TABLE IF EXISTS `[[dbprefix]]patch_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]patch_list` ( `patch_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment', `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name', PRIMARY KEY (`patch_id`) ) ENGINE=InnoDB AUTO_INCREMENT=161 DEFAULT CHARSET=utf8 COMMENT='List of data/schema patches'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]patch_list` --
LOCK TABLES `[[dbprefix]]patch_list` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]patch_list` DISABLE KEYS */; INSERT INTO `[[dbprefix]]patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(4,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\CreateLegacyStockStatusView'),(5,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\InitializeDefaultStock'),(6,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\UpdateInventorySourceItem'),(7,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\ReindexDefaultSource'),(8,'Magento\\InventorySales\\Setup\\Patch\\Schema\\InitializeWebsiteDefaultSock'),(9,'Magento\\Review\\Setup\\Patch\\Schema\\AddUniqueConstraintToReviewEntitySummary'),(10,'Magento\\TwoFactorAuth\\Setup\\Patch\\Schema\\CopyTablesFromOldModule'),(11,'Temando\\ShippingRemover\\Setup\\Patch\\Schema\\EmptyTablesRemoval'),(12,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(13,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(14,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(15,'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),(16,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(17,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(18,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(19,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),(20,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBulgaria'),(21,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),(22,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),(23,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForItaly'),(24,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(25,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),(26,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(27,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(28,'Magento\\Config\\Setup\\Patch\\Data\\UnsetTinymce3'),(29,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(30,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(31,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(32,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(33,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(34,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(35,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(36,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(37,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(38,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(39,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(40,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(41,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(42,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(43,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAddressAttributesSortOrder'),(44,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(45,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(46,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateDefaultCustomerGroupInConfig'),(47,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(48,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(49,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(50,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(51,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(52,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(53,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(54,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(55,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(56,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(57,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(58,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(59,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(60,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(61,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),(62,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductDescriptionOrder'),(63,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(64,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(65,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(66,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(67,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(68,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(69,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(70,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(71,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeyForProducts'),(72,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),(73,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(74,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(75,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(76,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(77,'Magento\\Quote\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(78,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(79,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(80,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(81,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),(82,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(83,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(84,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(85,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(86,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(87,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(88,'Magento\\Sales\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(89,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(90,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(91,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(92,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(93,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(94,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(95,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(96,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(97,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(98,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(99,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchRemovalNotification'),(100,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(101,'Magento\\Elasticsearch\\Setup\\Patch\\Data\\InvalidateIndex'),(102,'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(103,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(104,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(105,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(106,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(107,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(108,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(109,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(110,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(111,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(112,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(113,'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),(114,'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),(115,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(116,'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),(117,'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(118,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(119,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(120,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(121,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(122,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(123,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(124,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonLabel'),(125,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonSize'),(126,'Magento\\ReCaptchaMigration\\Setup\\Patch\\Data\\MigrateConfigToRecaptchaModules'),(127,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(128,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(129,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(130,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(131,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(132,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(133,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(134,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(135,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(136,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(137,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(138,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\CopyConfigFromOldModule'),(139,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptConfiguration'),(140,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptGoogleSecrets'),(141,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptSecrets'),(142,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\GenerateDuoSecurityKey'),(143,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\PopulateCountryTable'),(144,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\ResetU2fConfig'),(145,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(146,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(147,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(148,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(149,'Magento\\Wishlist\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(150,'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKcoApiPathsInCoreConfig'),(151,'Klarna\\Core\\Setup\\Patch\\Data\\UpdateKlarnaApiVersionInCoreConfig'),(152,'Klarna\\Kp\\Setup\\Patch\\Data\\RemoveHtmlTag'),(153,'Klarna\\Kp\\Setup\\Patch\\Data\\ResetIsActive'),(154,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\AttributesRemoval'),(155,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\BookmarkCleaner'),(156,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\ConfigRemoval'),(157,'Vertex\\Tax\\Setup\\Patch\\Data\\DetermineCurrentConfigForShippingOriginUse'),(158,'Vertex\\Tax\\Setup\\Patch\\Data\\EnableCacheType'),(159,'Vertex\\Tax\\Setup\\Patch\\Data\\ExpandDefaultTaxClassesPatch'),(160,'Vertex\\Tax\\Setup\\Patch\\Data\\MigrateCustomerCodeFromEav'); /*!40000 ALTER TABLE `[[dbprefix]]patch_list` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]paypal_billing_agreement` --
DROP TABLE IF EXISTS `[[dbprefix]]paypal_billing_agreement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]paypal_billing_agreement` ( `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID', `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID', `method_code` varchar(32) NOT NULL COMMENT 'Method Code', `reference_id` varchar(32) NOT NULL COMMENT 'Reference ID', `status` varchar(20) NOT NULL COMMENT 'Status', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID', `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label', PRIMARY KEY (`agreement_id`), KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`), KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]paypal_billing_agreement` --
LOCK TABLES `[[dbprefix]]paypal_billing_agreement` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]paypal_billing_agreement_order` --
DROP TABLE IF EXISTS `[[dbprefix]]paypal_billing_agreement_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]paypal_billing_agreement_order` ( `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement ID', `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID', PRIMARY KEY (`agreement_id`,`order_id`), KEY `[[DBPREFIX]]PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`), CONSTRAINT `FK_9EE0F3B5AE741E1A1BDDF5A663BFCB42` FOREIGN KEY (`agreement_id`) REFERENCES `[[dbprefix]]paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_ORDER_ORDER_ID_[[DBPREFIX]]SALES_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `[[dbprefix]]sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]paypal_billing_agreement_order` --
LOCK TABLES `[[dbprefix]]paypal_billing_agreement_order` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement_order` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]paypal_billing_agreement_order` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]paypal_cert` --
DROP TABLE IF EXISTS `[[dbprefix]]paypal_cert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]paypal_cert` ( `cert_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert ID', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `content` text COMMENT 'Content', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', PRIMARY KEY (`cert_id`), KEY `[[DBPREFIX]]PAYPAL_CERT_WEBSITE_ID` (`website_id`), CONSTRAINT `[[DBPREFIX]]PAYPAL_CERT_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]paypal_cert` --
LOCK TABLES `[[dbprefix]]paypal_cert` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]paypal_cert` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]paypal_cert` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]paypal_payment_transaction` --
-- -- Dumping data for table `[[dbprefix]]store` --
LOCK TABLES `[[dbprefix]]store` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]store` DISABLE KEYS */; INSERT INTO `[[dbprefix]]store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1); /*!40000 ALTER TABLE `[[dbprefix]]store` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]store_group` --
DROP TABLE IF EXISTS `[[dbprefix]]store_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]store_group` ( `group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group ID', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `name` varchar(255) NOT NULL COMMENT 'Store Group Name', `root_category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Root Category ID', `default_store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Default Store ID', `code` varchar(32) DEFAULT NULL COMMENT 'Store group unique code', PRIMARY KEY (`group_id`), UNIQUE KEY `[[DBPREFIX]]STORE_GROUP_CODE` (`code`), KEY `[[DBPREFIX]]STORE_GROUP_WEBSITE_ID` (`website_id`), KEY `[[DBPREFIX]]STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`), CONSTRAINT `[[DBPREFIX]]STORE_GROUP_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]store_group` --
LOCK TABLES `[[dbprefix]]store_group` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]store_group` DISABLE KEYS */; INSERT INTO `[[dbprefix]]store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store'); /*!40000 ALTER TABLE `[[dbprefix]]store_group` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]store_website` --
DROP TABLE IF EXISTS `[[dbprefix]]store_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]store_website` ( `website_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Website ID', `code` varchar(32) DEFAULT NULL COMMENT 'Code', `name` varchar(64) DEFAULT NULL COMMENT 'Website Name', `sort_order` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `default_group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Default Group ID', `is_default` smallint(5) unsigned DEFAULT '0' COMMENT 'Defines Is Website Default', PRIMARY KEY (`website_id`), UNIQUE KEY `[[DBPREFIX]]STORE_WEBSITE_CODE` (`code`), KEY `[[DBPREFIX]]STORE_WEBSITE_SORT_ORDER` (`sort_order`), KEY `[[DBPREFIX]]STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]store_website` --
LOCK TABLES `[[dbprefix]]store_website` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]store_website` DISABLE KEYS */; INSERT INTO `[[dbprefix]]store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1); /*!40000 ALTER TABLE `[[dbprefix]]store_website` 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 `[[DBPREFIX]]TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`), KEY `[[DBPREFIX]]TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`), KEY `[[DBPREFIX]]TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`), KEY `IDX_DC62AA3A0515973AF9E40AD22777C73A` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`), CONSTRAINT `FK_2B652BD3CC9AD34C7A2B33BAA2AB9BBB` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `[[dbprefix]]tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE, CONSTRAINT `FK_469DCE2C6AFE66A67F19F89821271A06` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE, CONSTRAINT `[[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, CONSTRAINT `[[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 ) ENGINE=InnoDB 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 */; /*!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 `[[DBPREFIX]]TAX_CALC_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`), KEY `[[DBPREFIX]]TAX_CALCULATION_RATE_CODE` (`code`), KEY `IDX_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 `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`), KEY `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`), CONSTRAINT `FK_D28111D1128C56F7BE39EF301F9F32B2` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `[[dbprefix]]tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]TAX_CALCULATION_RATE_TITLE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE 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 `[[DBPREFIX]]TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`), KEY `[[DBPREFIX]]TAX_CALCULATION_RULE_CODE` (`code`) ) ENGINE=InnoDB 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 */; /*!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=10 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,'Refund Adjustments','PRODUCT'),(5,'Gift Options','PRODUCT'),(6,'Order Gift Wrapping','PRODUCT'),(7,'Item Gift Wrapping','PRODUCT'),(8,'Printed Gift Card','PRODUCT'),(9,'Reward Points','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 `UNQ_A719D9444F7B979B92D2369CE724F9D0` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `[[DBPREFIX]]TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]TAX_ORDER_AGGREGATED_CREATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE 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 `UNQ_6C22B67A5EB5D08555BC3FA3F54DD8F3` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `[[DBPREFIX]]TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='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]]tfa_country_codes` --
DROP TABLE IF EXISTS `[[dbprefix]]tfa_country_codes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tfa_country_codes` ( `country_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID', `code` varchar(2) NOT NULL COMMENT 'Country code', `name` varchar(255) NOT NULL COMMENT 'Country name', `dial_code` varchar(255) NOT NULL COMMENT 'Prefix', PRIMARY KEY (`country_id`), KEY `[[DBPREFIX]]TFA_COUNTRY_CODES_CODE` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=242 DEFAULT CHARSET=utf8 COMMENT='tfa_country_codes'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tfa_country_codes` --
LOCK TABLES `[[dbprefix]]tfa_country_codes` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tfa_country_codes` DISABLE KEYS */; INSERT INTO `[[dbprefix]]tfa_country_codes` VALUES (1,'IL','Israel','+972'),(2,'AF','Afghanistan','+93'),(3,'AL','Albania','+355'),(4,'DZ','Algeria','+213'),(5,'AS','AmericanSamoa','+1 684'),(6,'AD','Andorra','+376'),(7,'AO','Angola','+244'),(8,'AI','Anguilla','+1 264'),(9,'AG','Antigua and Barbuda','+1268'),(10,'AR','Argentina','+54'),(11,'AM','Armenia','+374'),(12,'AW','Aruba','+297'),(13,'AU','Australia','+61'),(14,'AT','Austria','+43'),(15,'AZ','Azerbaijan','+994'),(16,'BS','Bahamas','+1 242'),(17,'BH','Bahrain','+973'),(18,'BD','Bangladesh','+880'),(19,'BB','Barbados','+1 246'),(20,'BY','Belarus','+375'),(21,'BE','Belgium','+32'),(22,'BZ','Belize','+501'),(23,'BJ','Benin','+229'),(24,'BM','Bermuda','+1 441'),(25,'BT','Bhutan','+975'),(26,'BA','Bosnia and Herzegovina','+387'),(27,'BW','Botswana','+267'),(28,'BR','Brazil','+55'),(29,'IO','British Indian Ocean Territory','+246'),(30,'BG','Bulgaria','+359'),(31,'BF','Burkina Faso','+226'),(32,'BI','Burundi','+257'),(33,'KH','Cambodia','+855'),(34,'CM','Cameroon','+237'),(35,'CA','Canada','+1'),(36,'CV','Cape Verde','+238'),(37,'KY','Cayman Islands','+ 345'),(38,'CF','Central African Republic','+236'),(39,'TD','Chad','+235'),(40,'CL','Chile','+56'),(41,'CN','China','+86'),(42,'CX','Christmas Island','+61'),(43,'CO','Colombia','+57'),(44,'KM','Comoros','+269'),(45,'CG','Congo','+242'),(46,'CK','Cook Islands','+682'),(47,'CR','Costa Rica','+506'),(48,'HR','Croatia','+385'),(49,'CU','Cuba','+53'),(50,'CY','Cyprus','+537'),(51,'CZ','Czech Republic','+420'),(52,'DK','Denmark','+45'),(53,'DJ','Djibouti','+253'),(54,'DM','Dominica','+1 767'),(55,'DO','Dominican Republic','+1 849'),(56,'EC','Ecuador','+593'),(57,'EG','Egypt','+20'),(58,'SV','El Salvador','+503'),(59,'GQ','Equatorial Guinea','+240'),(60,'ER','Eritrea','+291'),(61,'EE','Estonia','+372'),(62,'ET','Ethiopia','+251'),(63,'FO','Faroe Islands','+298'),(64,'FJ','Fiji','+679'),(65,'FI','Finland','+358'),(66,'FR','France','+33'),(67,'GF','French Guiana','+594'),(68,'PF','French Polynesia','+689'),(69,'GA','Gabon','+241'),(70,'GM','Gambia','+220'),(71,'GE','Georgia','+995'),(72,'DE','Germany','+49'),(73,'GH','Ghana','+233'),(74,'GI','Gibraltar','+350'),(75,'GR','Greece','+30'),(76,'GL','Greenland','+299'),(77,'GD','Grenada','+1 473'),(78,'GP','Guadeloupe','+590'),(79,'GU','Guam','+1 671'),(80,'GT','Guatemala','+502'),(81,'GN','Guinea','+224'),(82,'GW','Guinea-Bissau','+245'),(83,'GY','Guyana','+595'),(84,'HT','Haiti','+509'),(85,'HN','Honduras','+504'),(86,'HU','Hungary','+36'),(87,'IS','Iceland','+354'),(88,'IN','India','+91'),(89,'ID','Indonesia','+62'),(90,'IQ','Iraq','+964'),(91,'IE','Ireland','+353'),(92,'IL','Israel','+972'),(93,'IT','Italy','+39'),(94,'JM','Jamaica','+1 876'),(95,'JP','Japan','+81'),(96,'JO','Jordan','+962'),(97,'KZ','Kazakhstan','+7 7'),(98,'KE','Kenya','+254'),(99,'KI','Kiribati','+686'),(100,'KW','Kuwait','+965'),(101,'KG','Kyrgyzstan','+996'),(102,'LV','Latvia','+371'),(103,'LB','Lebanon','+961'),(104,'LS','Lesotho','+266'),(105,'LR','Liberia','+231'),(106,'LI','Liechtenstein','+423'),(107,'LT','Lithuania','+370'),(108,'LU','Luxembourg','+352'),(109,'MG','Madagascar','+261'),(110,'MW','Malawi','+265'),(111,'MY','Malaysia','+60'),(112,'MV','Maldives','+960'),(113,'ML','Mali','+223'),(114,'MT','Malta','+356'),(115,'MH','Marshall Islands','+692'),(116,'MQ','Martinique','+596'),(117,'MR','Mauritania','+222'),(118,'MU','Mauritius','+230'),(119,'YT','Mayotte','+262'),(120,'MX','Mexico','+52'),(121,'MC','Monaco','+377'),(122,'MN','Mongolia','+976'),(123,'ME','Montenegro','+382'),(124,'MS','Montserrat','+1664'),(125,'MA','Morocco','+212'),(126,'MM','Myanmar','+95'),(127,'NA','Namibia','+264'),(128,'NR','Nauru','+674'),(129,'NP','Nepal','+977'),(130,'NL','Netherlands','+31'),(131,'AN','Netherlands Antilles','+599'),(132,'NC','New Caledonia','+687'),(133,'NZ','New Zealand','+64'),(134,'NI','Nicaragua','+505'),(135,'NE','Niger','+227'),(136,'NG','Nigeria','+234'),(137,'NU','Niue','+683'),(138,'NF','Norfolk Island','+672'),(139,'MP','Northern Mariana Islands','+1 670'),(140,'NO','Norway','+47'),(141,'OM','Oman','+968'),(142,'PK','Pakistan','+92'),(143,'PW','Palau','+680'),(144,'PA','Panama','+507'),(145,'PG','Papua New Guinea','+675'),(146,'PY','Paraguay','+595'),(147,'PE','Peru','+51'),(148,'PH','Philippines','+63'),(149,'PL','Poland','+48'),(150,'PT','Portugal','+351'),(151,'PR','Puerto Rico','+1 939'),(152,'QA','Qatar','+974'),(153,'RO','Romania','+40'),(154,'RW','Rwanda','+250'),(155,'WS','Samoa','+685'),(156,'SM','San Marino','+378'),(157,'SA','Saudi Arabia','+966'),(158,'SN','Senegal','+221'),(159,'RS','Serbia','+381'),(160,'SC','Seychelles','+248'),(161,'SL','Sierra Leone','+232'),(162,'SG','Singapore','+65'),(163,'SK','Slovakia','+421'),(164,'SI','Slovenia','+386'),(165,'SB','Solomon Islands','+677'),(166,'ZA','South Africa','+27'),(167,'GS','South Georgia and the South Sandwich Islands','+500'),(168,'ES','Spain','+34'),(169,'LK','Sri Lanka','+94'),(170,'SD','Sudan','+249'),(171,'SR','Suriname','+597'),(172,'SZ','Swaziland','+268'),(173,'SE','Sweden','+46'),(174,'CH','Switzerland','+41'),(175,'TJ','Tajikistan','+992'),(176,'TH','Thailand','+66'),(177,'TG','Togo','+228'),(178,'TK','Tokelau','+690'),(179,'TO','Tonga','+676'),(180,'TT','Trinidad and Tobago','+1 868'),(181,'TN','Tunisia','+216'),(182,'TR','Turkey','+90'),(183,'TM','Turkmenistan','+993'),(184,'TC','Turks and Caicos Islands','+1 649'),(185,'TV','Tuvalu','+688'),(186,'UG','Uganda','+256'),(187,'UA','Ukraine','+380'),(188,'AE','United Arab Emirates','+971'),(189,'GB','United Kingdom','+44'),(190,'US','United States','+1'),(191,'UY','Uruguay','+598'),(192,'UZ','Uzbekistan','+998'),(193,'VU','Vanuatu','+678'),(194,'WF','Wallis and Futuna','+681'),(195,'YE','Yemen','+967'),(196,'ZM','Zambia','+260'),(197,'ZW','Zimbabwe','+263'),(198,'AX','land Islands',''),(199,'BO','Bolivia, Plurinational State of','+591'),(200,'BN','Brunei Darussalam','+673'),(201,'CC','Cocos (Keeling) Islands','+61'),(202,'CD','Congo, The Democratic Republic of the','+243'),(203,'CI','Cote d\'Ivoire','+225'),(204,'FK','Falkland Islands (Malvinas)','+500'),(205,'GG','Guernsey','+44'),(206,'VA','Holy See (Vatican City State)','+379'),(207,'HK','Hong Kong','+852'),(208,'IR','Iran, Islamic Republic of','+98'),(209,'IM','Isle of Man','+44'),(210,'JE','Jersey','+44'),(211,'KP','Korea, Democratic People\'s Republic of','+850'),(212,'KR','Korea, Republic of','+82'),(213,'LA','Lao People\'s Democratic Republic','+856'),(214,'LY','Libyan Arab Jamahiriya','+218'),(215,'MO','Macao','+853'),(216,'MK','Macedonia, The Former Yugoslav Republic of','+389'),(217,'FM','Micronesia, Federated States of','+691'),(218,'MD','Moldova, Republic of','+373'),(219,'MZ','Mozambique','+258'),(220,'PS','Palestinian Territory, Occupied','+970'),(221,'PN','Pitcairn','+872'),(222,'RE','Réunion','+262'),(223,'RU','Russia','+7'),(224,'BL','Saint Barthélemy','+590'),(225,'SH','Saint Helena, Ascension and Tristan Da Cunha','+290'),(226,'KN','Saint Kitts and Nevis','+1 869'),(227,'LC','Saint Lucia','+1 758'),(228,'MF','Saint Martin','+590'),(229,'PM','Saint Pierre and Miquelon','+508'),(230,'VC','Saint Vincent and the Grenadines','+1 784'),(231,'ST','Sao Tome and Principe','+239'),(232,'SO','Somalia','+252'),(233,'SJ','Svalbard and Jan Mayen','+47'),(234,'SY','Syrian Arab Republic','+963'),(235,'TW','Taiwan, Province of China','+886'),(236,'TZ','Tanzania, United Republic of','+255'),(237,'TL','Timor-Leste','+670'),(238,'VE','Venezuela, Bolivarian Republic of','+58'),(239,'VN','Viet Nam','+84'),(240,'VG','Virgin Islands, British','+1 284'),(241,'VI','Virgin Islands, U.S.','+1 340'); /*!40000 ALTER TABLE `[[dbprefix]]tfa_country_codes` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]tfa_user_config` --
DROP TABLE IF EXISTS `[[dbprefix]]tfa_user_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]tfa_user_config` ( `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'TFA admin user ID', `user_id` int(10) unsigned NOT NULL COMMENT 'User ID', `encoded_providers` text COMMENT 'Encoded providers list', `encoded_config` text COMMENT 'Encoded providers configuration', `default_provider` varchar(255) DEFAULT NULL COMMENT 'Default provider', PRIMARY KEY (`config_id`), KEY `[[DBPREFIX]]TFA_USER_CONFIG_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` (`user_id`), CONSTRAINT `[[DBPREFIX]]TFA_USER_CONFIG_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='tfa_user_config'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]tfa_user_config` --
LOCK TABLES `[[dbprefix]]tfa_user_config` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]tfa_user_config` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]tfa_user_config` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]theme` --
DROP TABLE IF EXISTS `[[dbprefix]]theme`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]theme` ( `theme_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier', `parent_id` int(11) DEFAULT NULL COMMENT 'Parent ID', `theme_path` varchar(255) DEFAULT NULL COMMENT 'Theme Path', `theme_title` varchar(255) NOT NULL COMMENT 'Theme Title', `preview_image` varchar(255) DEFAULT NULL COMMENT 'Preview Image', `is_featured` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Theme Featured', `area` varchar(255) NOT NULL COMMENT 'Theme Area', `type` smallint(6) NOT NULL COMMENT 'Theme type: 0:physical, 1:virtual, 2:staging', `code` text COMMENT 'Full theme code, including package', PRIMARY KEY (`theme_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Core theme'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]theme` --
LOCK TABLES `[[dbprefix]]theme` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]theme` DISABLE KEYS */; INSERT INTO `[[dbprefix]]theme` VALUES (1,NULL,'Magento/blank','Magento Blank','preview_image_602e4b073baac.jpeg',0,'frontend',0,'Magento/blank'),(2,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(3,1,'Magento/luma','Magento Luma','preview_image_602e4b0748aa8.jpeg',0,'frontend',0,'Magento/luma'); /*!40000 ALTER TABLE `[[dbprefix]]theme` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]theme_file` --
DROP TABLE IF EXISTS `[[dbprefix]]theme_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]theme_file` ( `theme_files_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier', `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID', `file_path` varchar(255) DEFAULT NULL COMMENT 'Relative path to file', `file_type` varchar(32) NOT NULL COMMENT 'File Type', `content` longtext NOT NULL COMMENT 'File Content', `sort_order` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Sort Order', `is_temporary` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is Temporary File', PRIMARY KEY (`theme_files_id`), KEY `[[DBPREFIX]]THEME_FILE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`), CONSTRAINT `[[DBPREFIX]]THEME_FILE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme files'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]theme_file` --
LOCK TABLES `[[dbprefix]]theme_file` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]theme_file` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]theme_file` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]translation` --
DROP TABLE IF EXISTS `[[dbprefix]]translation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]translation` ( `key_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation', `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `translate` varchar(255) DEFAULT NULL COMMENT 'Translate', `locale` varchar(20) NOT NULL DEFAULT 'en_US' COMMENT 'Locale', `crc_string` bigint(20) NOT NULL DEFAULT '1591228201' COMMENT 'Translation String CRC32 Hash', PRIMARY KEY (`key_id`), UNIQUE KEY `[[DBPREFIX]]TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`), CONSTRAINT `[[DBPREFIX]]TRANSLATION_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translations'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]translation` --
LOCK TABLES `[[dbprefix]]translation` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]translation` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]translation` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]ui_bookmark` --
DROP TABLE IF EXISTS `[[dbprefix]]ui_bookmark`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]ui_bookmark` ( `bookmark_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier', `user_id` int(10) unsigned NOT NULL COMMENT 'User ID', `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace', `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier', `current` smallint(6) NOT NULL COMMENT 'Mark current bookmark per user and identifier', `title` varchar(255) DEFAULT NULL COMMENT 'Bookmark title', `config` longtext COMMENT 'Bookmark config', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Bookmark created at', `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Bookmark updated at', PRIMARY KEY (`bookmark_id`), KEY `[[DBPREFIX]]UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`), CONSTRAINT `[[DBPREFIX]]UI_BOOKMARK_USER_ID_[[DBPREFIX]]ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `[[dbprefix]]admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bookmark'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]ui_bookmark` --
LOCK TABLES `[[dbprefix]]ui_bookmark` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]ui_bookmark` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]ui_bookmark` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]url_rewrite` --
DROP TABLE IF EXISTS `[[dbprefix]]url_rewrite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]url_rewrite` ( `url_rewrite_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID', `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code', `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `request_path` varchar(255) DEFAULT NULL COMMENT 'Request Path', `target_path` varchar(255) DEFAULT NULL COMMENT 'Target Path', `redirect_type` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Redirect Type', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `description` varchar(255) DEFAULT NULL COMMENT 'Description', `is_autogenerated` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is rewrite generated automatically flag', `metadata` varchar(255) DEFAULT NULL COMMENT 'Meta data for url rewrite', PRIMARY KEY (`url_rewrite_id`), UNIQUE KEY `[[DBPREFIX]]URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`), KEY `[[DBPREFIX]]URL_REWRITE_TARGET_PATH` (`target_path`), KEY `[[DBPREFIX]]URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`), KEY `[[DBPREFIX]]URL_REWRITE_ENTITY_ID` (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]url_rewrite` --
LOCK TABLES `[[dbprefix]]url_rewrite` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]url_rewrite` DISABLE KEYS */; INSERT INTO `[[dbprefix]]url_rewrite` VALUES (1,'cms-page',1,'no-route','cms/page/view/page_id/1',0,1,NULL,1,NULL),(2,'cms-page',2,'home','cms/page/view/page_id/2',0,1,NULL,1,NULL),(3,'cms-page',3,'enable-cookies','cms/page/view/page_id/3',0,1,NULL,1,NULL),(4,'cms-page',4,'privacy-policy-cookie-restriction-mode','cms/page/view/page_id/4',0,1,NULL,1,NULL); /*!40000 ALTER TABLE `[[dbprefix]]url_rewrite` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]variable` --
-- -- Dumping data for table `[[dbprefix]]variable` --
LOCK TABLES `[[dbprefix]]variable` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]variable` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]variable` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]variable_value` --
DROP TABLE IF EXISTS `[[dbprefix]]variable_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]variable_value` ( `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID', `variable_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Variable ID', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `plain_value` text COMMENT 'Plain Text Value', `html_value` text COMMENT 'Html Value', PRIMARY KEY (`value_id`), UNIQUE KEY `[[DBPREFIX]]VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`), KEY `[[DBPREFIX]]VARIABLE_VALUE_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]VARIABLE_VALUE_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]VARIABLE_VALUE_VARIABLE_ID_[[DBPREFIX]]VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `[[dbprefix]]variable` (`variable_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]variable_value` --
LOCK TABLES `[[dbprefix]]variable_value` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]variable_value` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]variable_value` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vault_payment_token` --
DROP TABLE IF EXISTS `[[dbprefix]]vault_payment_token`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vault_payment_token` ( `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID', `public_hash` varchar(128) NOT NULL COMMENT 'Hash code for using on frontend', `payment_method_code` varchar(128) NOT NULL COMMENT 'Payment method code', `type` varchar(128) NOT NULL COMMENT 'Type', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Expires At', `gateway_token` varchar(255) NOT NULL COMMENT 'Gateway Token', `details` text COMMENT 'Details', `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_visible` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`entity_id`), UNIQUE KEY `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`), UNIQUE KEY `UNQ_8A3A66ADA892E72943DABBC512E7BA4B` (`payment_method_code`,`customer_id`,`gateway_token`), KEY `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` (`customer_id`), CONSTRAINT `[[DBPREFIX]]VAULT_PAYMENT_TOKEN_CSTR_ID_[[DBPREFIX]]CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vault tokens of payment'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vault_payment_token` --
LOCK TABLES `[[dbprefix]]vault_payment_token` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vault_payment_token_order_payment_link` --
DROP TABLE IF EXISTS `[[dbprefix]]vault_payment_token_order_payment_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vault_payment_token_order_payment_link` ( `order_payment_id` int(10) unsigned NOT NULL COMMENT 'Order payment ID', `payment_token_id` int(10) unsigned NOT NULL COMMENT 'Payment token ID', PRIMARY KEY (`order_payment_id`,`payment_token_id`), KEY `FK_9DDDB313998578BE4AC6CAA0A85DD75C` (`payment_token_id`), CONSTRAINT `FK_9DDDB313998578BE4AC6CAA0A85DD75C` FOREIGN KEY (`payment_token_id`) REFERENCES `[[dbprefix]]vault_payment_token` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `FK_F2B3983591CCBE38509B9B3399D03DB2` FOREIGN KEY (`order_payment_id`) REFERENCES `[[dbprefix]]sales_order_payment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order payments to vault token'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vault_payment_token_order_payment_link` --
LOCK TABLES `[[dbprefix]]vault_payment_token_order_payment_link` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token_order_payment_link` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vault_payment_token_order_payment_link` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_custom_option_flex_field` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_custom_option_flex_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_custom_option_flex_field` ( `entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Map Entity ID', `option_id` int(11) NOT NULL COMMENT 'Customizable Option ID', `website_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Website ID', `flex_field` int(11) DEFAULT '0' COMMENT 'Customizable Option to Flex Field Map', PRIMARY KEY (`entity_id`), UNIQUE KEY `[[DBPREFIX]]VERTEX_CUSTOM_OPTION_FLEX_FIELD_OPTION_ID_WEBSITE_ID` (`option_id`,`website_id`), KEY `[[DBPREFIX]]VERTEX_CUSTOM_OPTION_FLEX_FIELD_OPTION_ID` (`option_id`), KEY `[[DBPREFIX]]VERTEX_CUSTOM_OPTION_FLEX_FIELD_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customizable Option to Flex Field Map'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_custom_option_flex_field` --
LOCK TABLES `[[dbprefix]]vertex_custom_option_flex_field` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_custom_option_flex_field` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_custom_option_flex_field` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_customer_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_customer_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_customer_code` ( `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID', `customer_code` text COMMENT 'Customer Code for Vertex', PRIMARY KEY (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Code for Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_customer_code` --
LOCK TABLES `[[dbprefix]]vertex_customer_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_customer_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_customer_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_customer_country` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_customer_country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_customer_country` ( `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID', `customer_country` varchar(255) DEFAULT NULL COMMENT 'Customer Country', PRIMARY KEY (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Country associated to Customer'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_customer_country` --
LOCK TABLES `[[dbprefix]]vertex_customer_country` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_customer_country` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_customer_country` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_invoice_sent` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_invoice_sent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_invoice_sent` ( `invoice_id` int(10) unsigned NOT NULL COMMENT 'Invoice ID', `sent_to_vertex` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Invoice has been logged in Vertex', PRIMARY KEY (`invoice_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_invoice_sent` --
LOCK TABLES `[[dbprefix]]vertex_invoice_sent` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_invoice_sent` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_invoice_sent` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_order_invoice_status` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_order_invoice_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_order_invoice_status` ( `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID', `sent_to_vertex` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Invoice has been logged in Vertex', PRIMARY KEY (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invoice has been logged in Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_order_invoice_status` --
LOCK TABLES `[[dbprefix]]vertex_order_invoice_status` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_order_invoice_status` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_order_invoice_status` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` ( `item_id` int(11) NOT NULL COMMENT 'Creditmemo Item ID', `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `UNQ_DA2CD2A762E181053E964736F544E164` (`item_id`,`invoice_text_code`), KEY `[[DBPREFIX]]VERTEX_SALES_CREDITMEMO_ITEM_INVOICE_TEXT_CODE_ITEM_ID` (`item_id`), KEY `IDX_EF3D3D6EC988CC1122DB1B3FD887CE3A` (`invoice_text_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Creditmemo text code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_creditmemo_item_tax_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` ( `item_id` int(11) NOT NULL COMMENT 'Creditmemo Item ID', `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `[[DBPREFIX]]VERTEX_SALES_CREDITMEMO_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`), KEY `[[DBPREFIX]]VERTEX_SALES_CREDITMEMO_ITEM_TAX_CODE_ITEM_ID` (`item_id`), KEY `[[DBPREFIX]]VERTEX_SALES_CREDITMEMO_ITEM_TAX_CODE_TAX_CODE` (`tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Creditmemo tax code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_tax_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` ( `item_id` int(11) NOT NULL COMMENT 'Creditmemo Item ID', `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `UNQ_AFDAB8D46269D573BAC8F6894005FCD6` (`item_id`,`vertex_tax_code`), KEY `[[DBPREFIX]]VERTEX_SALES_CREDITMEMO_ITEM_VERTEX_TAX_CODE_ITEM_ID` (`item_id`), KEY `IDX_5EC54E5145C3BA3B95D51FF8226EC5E6` (`vertex_tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Creditmemo vertex tax code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_order_item_invoice_text_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_order_item_invoice_text_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_order_item_invoice_text_code` ( `item_id` int(10) unsigned NOT NULL COMMENT 'Order ID', `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `UNQ_0A6EAA4AC7554097D93D21809A9B01DE` (`item_id`,`invoice_text_code`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_INVOICE_TEXT_CODE_ITEM_ID` (`item_id`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_INVOICE_TEXT_CODE_INVOICE_TEXT_CODE` (`invoice_text_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invoice text code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_order_item_invoice_text_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_order_item_invoice_text_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_invoice_text_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_invoice_text_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_order_item_tax_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_order_item_tax_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_order_item_tax_code` ( `item_id` int(11) NOT NULL COMMENT 'Creditmemo Item ID', `tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_TAX_CODE_ITEM_ID_TAX_CODE` (`item_id`,`tax_code`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_TAX_CODE_ITEM_ID` (`item_id`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_TAX_CODE_TAX_CODE` (`tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invoice tax code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_order_item_tax_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_order_item_tax_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_tax_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_tax_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_sales_order_item_vertex_tax_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` ( `item_id` int(11) NOT NULL COMMENT 'Creditmemo Item ID', `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `UNQ_A4D7DF048B165D6C702BFC6BC85A4981` (`item_id`,`vertex_tax_code`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_VERTEX_TAX_CODE_ITEM_ID` (`item_id`), KEY `[[DBPREFIX]]VERTEX_SALES_ORDER_ITEM_VERTEX_TAX_CODE_VERTEX_TAX_CODE` (`vertex_tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Invoice Vertex tax code from Vertex'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` --
LOCK TABLES `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_sales_order_item_vertex_tax_code` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_taxrequest` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_taxrequest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_taxrequest` ( `request_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Request Id', `request_type` varchar(255) NOT NULL COMMENT 'Request type', `quote_id` bigint(20) NOT NULL COMMENT 'Quote Id', `order_id` bigint(20) NOT NULL COMMENT 'Order Id', `total_tax` varchar(255) NOT NULL COMMENT 'Total Tax Amount', `source_path` varchar(255) NOT NULL COMMENT 'Source path controller_module_action', `tax_area_id` varchar(255) NOT NULL COMMENT 'Tax Jurisdictions Id', `sub_total` varchar(255) NOT NULL COMMENT 'Response Subtotal Amount', `total` varchar(255) NOT NULL COMMENT 'Response Total Amount', `lookup_result` varchar(255) NOT NULL COMMENT 'Tax Area Response Lookup Result', `request_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Request create date', `request_xml` text NOT NULL COMMENT 'Request XML', `response_xml` text NOT NULL COMMENT 'Response XML', `response_time` int(10) unsigned NOT NULL COMMENT 'Milliseconds taken for Vertex API call to complete', PRIMARY KEY (`request_id`), UNIQUE KEY `[[DBPREFIX]]VERTEX_TAXREQUEST_REQUEST_ID` (`request_id`), KEY `[[DBPREFIX]]VERTEX_TAXREQUEST_REQUEST_TYPE` (`request_type`), KEY `[[DBPREFIX]]VERTEX_TAXREQUEST_ORDER_ID` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The tax request table'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_taxrequest` --
LOCK TABLES `[[dbprefix]]vertex_taxrequest` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_taxrequest` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_taxrequest` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]vertex_vat_country_code` --
DROP TABLE IF EXISTS `[[dbprefix]]vertex_vat_country_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]vertex_vat_country_code` ( `address_id` int(10) unsigned NOT NULL COMMENT 'Address ID', `customer_country` varchar(255) DEFAULT NULL COMMENT 'Customer Country', PRIMARY KEY (`address_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vat Country code associated to Order Address'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]vertex_vat_country_code` --
LOCK TABLES `[[dbprefix]]vertex_vat_country_code` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]vertex_vat_country_code` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]vertex_vat_country_code` 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` int(11) NOT NULL DEFAULT '0' COMMENT 'State', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', PRIMARY KEY (`value_id`), KEY `[[DBPREFIX]]WEEE_TAX_WEBSITE_ID` (`website_id`), KEY `[[DBPREFIX]]WEEE_TAX_ENTITY_ID` (`entity_id`), KEY `[[DBPREFIX]]WEEE_TAX_COUNTRY` (`country`), KEY `[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `[[DBPREFIX]]WEEE_TAX_ATTRIBUTE_ID_[[DBPREFIX]]EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]WEEE_TAX_COUNTRY_[[DBPREFIX]]DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `[[dbprefix]]directory_country` (`country_id`) ON DELETE CASCADE, CONSTRAINT `[[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, CONSTRAINT `[[DBPREFIX]]WEEE_TAX_WEBSITE_ID_[[DBPREFIX]]STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `[[dbprefix]]store_website` (`website_id`) ON DELETE 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 `[[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', `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID', `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`), KEY `[[DBPREFIX]]WIDGET_INSTANCE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` (`theme_id`), CONSTRAINT `[[DBPREFIX]]WIDGET_INSTANCE_THEME_ID_[[DBPREFIX]]THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `[[dbprefix]]theme` (`theme_id`) ON DELETE CASCADE ) 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 'Container', `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 `[[DBPREFIX]]WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`), CONSTRAINT `FK_8CEB8E4A49C1C3B5DA3955BA7D727D5D` FOREIGN KEY (`instance_id`) REFERENCES `[[dbprefix]]widget_instance` (`instance_id`) ON DELETE 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 `[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID_PAGE_ID` (`layout_update_id`,`page_id`), KEY `[[DBPREFIX]]WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`), CONSTRAINT `FK_4A92EC86A64E5198C495C2359162AD22` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]widget_instance_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `FK_79179AAD75F12559E0DB3AD9C51FF5BD` FOREIGN KEY (`layout_update_id`) REFERENCES `[[dbprefix]]layout_update` (`layout_update_id`) ON DELETE 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 `[[DBPREFIX]]WISHLIST_CUSTOMER_ID` (`customer_id`), KEY `[[DBPREFIX]]WISHLIST_SHARED` (`shared`), CONSTRAINT `[[DBPREFIX]]WISHLIST_CUSTOMER_ID_[[DBPREFIX]]CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `[[dbprefix]]customer_entity` (`entity_id`) ON DELETE 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 `[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`), KEY `[[DBPREFIX]]WISHLIST_ITEM_PRODUCT_ID` (`product_id`), KEY `[[DBPREFIX]]WISHLIST_ITEM_STORE_ID` (`store_id`), CONSTRAINT `[[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, CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_STORE_ID_[[DBPREFIX]]STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID_[[DBPREFIX]]WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `[[dbprefix]]wishlist` (`wishlist_id`) ON DELETE 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 ) 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;
-- -- Table structure for table `[[dbprefix]]yotpo_order_status_history` --
-- -- Dumping data for table `[[dbprefix]]yotpo_sync` --
LOCK TABLES `[[dbprefix]]yotpo_sync` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]yotpo_sync` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]yotpo_sync` ENABLE KEYS */; UNLOCK TABLES;
-- -- Dumping routines for database 'script_mage241p1' --
-- -- Final view structure for view `[[dbprefix]]inventory_stock_1` --
/*!50001 DROP VIEW IF EXISTS `[[dbprefix]]inventory_stock_1`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 SQL SECURITY INVOKER */ /*!50001 VIEW `[[dbprefix]]inventory_stock_1` AS select distinct `legacy_stock_status`.`product_id` AS `product_id`,`legacy_stock_status`.`website_id` AS `website_id`,`legacy_stock_status`.`stock_id` AS `stock_id`,`legacy_stock_status`.`qty` AS `quantity`,`legacy_stock_status`.`stock_status` AS `is_salable`,`product`.`sku` AS `sku` from (`[[dbprefix]]cataloginventory_stock_status` `legacy_stock_status` join `[[dbprefix]]catalog_product_entity` `product` on((`legacy_stock_status`.`product_id` = `product`.`entity_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; /*!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 */;