IP : 3.144.86.97Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
hizup/
../
soho/
./
../
myadmin/
../
bolt/
../
magento18/
magento18.sql/
/
-- MySQL dump 10.13 Distrib 5.6.46, for Linux (x86_64) -- -- Host: localhost Database: magento2211 -- ------------------------------------------------------ -- Server version 5.6.46
/*!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_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(100) 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_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_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_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 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 */; /*!40000 ALTER TABLE `[[dbprefix]]adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]amazon_customer` --
DROP TABLE IF EXISTS `[[dbprefix]]amazon_customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]amazon_customer` ( `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity_id', `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer_id', `amazon_id` varchar(255) NOT NULL COMMENT 'Amazon_id', PRIMARY KEY (`entity_id`), UNIQUE KEY `[[DBPREFIX]]AMAZON_CUSTOMER_CUSTOMER_ID_AMAZON_ID` (`customer_id`,`amazon_id`), UNIQUE KEY `[[DBPREFIX]]AMAZON_CUSTOMER_CUSTOMER_ID` (`customer_id`), CONSTRAINT `[[DBPREFIX]]AMAZON_CUSTOMER_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='[[dbprefix]]amazon_customer'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]amazon_customer` --
LOCK TABLES `[[dbprefix]]amazon_customer` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]amazon_customer` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]amazon_customer` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]amazon_pending_authorization` --
-- -- 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_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `[[dbprefix]]catalogrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_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_fulltext_scope1` --
DROP TABLE IF EXISTS `[[dbprefix]]catalogsearch_fulltext_scope1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `[[dbprefix]]catalogsearch_fulltext_scope1` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` int(10) unsigned NOT NULL COMMENT 'Attribute_id', `data_index` longtext COMMENT 'Data index', PRIMARY KEY (`entity_id`,`attribute_id`), FULLTEXT KEY `FTI_FULLTEXT_DATA_INDEX` (`data_index`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]catalogsearch_fulltext_scope1_tmp'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]catalogsearch_fulltext_scope1` --
LOCK TABLES `[[dbprefix]]catalogsearch_fulltext_scope1` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_fulltext_scope1` DISABLE KEYS */; /*!40000 ALTER TABLE `[[dbprefix]]catalogsearch_fulltext_scope1` 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_STORE_STORE_ID` (`store_id`), CONSTRAINT `[[DBPREFIX]]CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CHKT_AGRT_STORE_AGRT_ID_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 'Block 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 COMMENT 'Block ID', `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_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `[[dbprefix]]cms_block` (`block_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CMS_BLOCK_STORE_STORE_ID_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 'Page 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', `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', `layout_update_selected` varchar(255) DEFAULT NULL COMMENT 'File containing custom layout update', 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 'Page 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_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]cms_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]CMS_PAGE_STORE_STORE_ID_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=27 DEFAULT CHARSET=utf8 COMMENT='Config Data'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `[[dbprefix]]core_config_data` --
LOCK TABLES `[[dbprefix]]core_config_data` WRITE; /*!40000 ALTER TABLE `[[dbprefix]]core_config_data` DISABLE KEYS */; INSERT INTO `[[dbprefix]]core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1','[[regtime]]'),(2,'default',0,'web/unsecure/base_url','http://[[domhost]][[relativeurl]]/','[[regtime]]'),(3,'default',0,'web/secure/base_url','https://[[domhost]][[relativeurl]]/','[[regtime]]'),(4,'default',0,'general/locale/code','en_US','[[regtime]]'),(5,'default',0,'web/secure/use_in_frontend',[[https_enable]],'[[regtime]]'),(6,'default',0,'web/secure/use_in_adminhtml',[[https_enable]],'[[regtime]]'),(7,'default',0,'general/locale/timezone','America/New_York','[[regtime]]'),(8,'default',0,'currency/options/base','USD','[[regtime]]'),(9,'default',0,'currency/options/default','USD','[[regtime]]'),(10,'default',0,'currency/options/allow','USD','[[regtime]]'),(11,'default',0,'general/region/display_all','1','[[regtime]]'),(12,'default',0,'general/region/state_required','AT,BR,CA,CH,EE,ES,FI,LT,LV,RO,US,HR,IN,AU','[[regtime]]'),(13,'default',0,'catalog/category/root_id','2','[[regtime]]'),(14,'default',0,'payment/authorizenet_acceptjs/cctypes','AE,VI,MC,DI,JCB,DN','[[regtime]]'),(15,'default',0,'payment/authorizenet_acceptjs/order_status','processing','[[regtime]]'),(16,'default',0,'payment/authorizenet_acceptjs/payment_action','authorize','[[regtime]]'),(17,'default',0,'payment/authorizenet_acceptjs/currency','USD','[[regtime]]'),(18,'default',0,'analytics/subscription/enabled','1','[[regtime]]'),(19,'default',0,'crontab/default/jobs/analytics_subscribe/schedule/cron_expr','0 * * * *','[[regtime]]'),(20,'website',0,'connector_configuration/transactional_data/order_statuses','canceled,closed,complete,fraud,holded,payment_review,paypal_canceled_reversal,paypal_reversed,pending,pending_payment,pending_paypal,processing','[[regtime]]'),(21,'website',0,'connector_configuration/catalog_sync/catalog_type','simple,virtual,configurable,downloadable,grouped,bundle','[[regtime]]'),(22,'website',0,'connector_configuration/catalog_sync/catalog_visibility','1,2,3,4','[[regtime]]'),(23,'default',0,'connector_dynamic_content/external_dynamic_content_urls/passcode','[[passcode]]','[[regtime]]'),(24,'default',0,'connector_automation/review_settings/allow_non_subscribers','1','[[regtime]]'),(25,'default',0,'connector_configuration/abandoned_carts/allow_non_subscribers','1','[[regtime]]'),(26,'default',0,'sync_settings/addressbook/allow_non_subscribers','1','[[regtime]]'); /*!40000 ALTER TABLE `[[dbprefix]]core_config_data` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `[[dbprefix]]cron_schedule` --
-- -- 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]]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_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_CSTR_ID_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_1AB8A7D268A89EC0FF19ED4F783EDFC1` FOREIGN KEY (`agreement_id`) REFERENCES `[[dbprefix]]paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]PAYPAL_BILLING_AGRT_ORDER_ORDER_ID_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_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]]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_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]VARIABLE_VALUE_VARIABLE_ID_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_HASH_UNIQUE_INDEX_PUBLIC_HASH` (`public_hash`), UNIQUE KEY `UNQ_1AC336F121321F93C09BF4573404B127` (`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(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Map Entity ID', `option_id` int(10) unsigned NOT NULL COMMENT 'Customizable Option ID', `website_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `flex_field` text COMMENT 'Flexible Field ID', PRIMARY KEY (`entity_id`), UNIQUE KEY `[[DBPREFIX]]VERTEX_CUSTOM_OPTION_FLEX_FIELD_OPTION_ID_WEBSITE_ID` (`option_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='[[dbprefix]]vertex_customer_code'; /*!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_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 COMMENT='[[dbprefix]]vertex_invoice_sent'; /*!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='[[dbprefix]]vertex_order_invoice_status'; /*!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(10) unsigned 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_creditmemo_item_invoice_text_code'; /*!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(10) unsigned 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_creditmemo_item_tax_code'; /*!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(10) unsigned NOT NULL COMMENT 'Creditmemo Item ID', `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex', UNIQUE KEY `UNQ_AFDAB8D46269D573BAC8F6894005FCD6` (`item_id`,`vertex_tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_creditmemo_item_vertex_tax_code'; /*!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 Item ID', `invoice_text_code` varchar(100) NOT NULL COMMENT 'Invoice text code from Vertex', UNIQUE KEY `UNQ_0A6EAA4AC7554097D93D21809A9B01DE` (`item_id`,`invoice_text_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_order_item_invoice_text_code'; /*!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(10) unsigned NOT NULL COMMENT 'Order 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`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_order_item_tax_code'; /*!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(10) unsigned NOT NULL COMMENT 'Order Item ID', `vertex_tax_code` varchar(100) NOT NULL COMMENT 'Text code from Vertex', UNIQUE KEY `UNQ_A4D7DF048B165D6C702BFC6BC85A4981` (`item_id`,`vertex_tax_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='[[dbprefix]]vertex_sales_order_item_vertex_tax_code'; /*!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) unsigned NOT NULL AUTO_INCREMENT, `request_type` varchar(255) NOT NULL COMMENT 'Request Type', `response_time` int(10) unsigned DEFAULT NULL COMMENT 'Milliseconds taken for Vertex API call to complete', `quote_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `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', 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='Log of requests to Vertex'; /*!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]]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_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `[[dbprefix]]eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `[[dbprefix]]directory_country` (`country_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]WEEE_TAX_ENTITY_ID_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_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_THEME_THEME_ID` (`theme_id`), CONSTRAINT `[[DBPREFIX]]WIDGET_INSTANCE_THEME_ID_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_3778D336435BAFAE5B95A2034AA5DFDC` 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_76382EFC6FFA8BCD022523F125270837` FOREIGN KEY (`page_id`) REFERENCES `[[dbprefix]]widget_instance_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `FK_E19909A9FE41E9C0B8D9287D9D2905F1` 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_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_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `[[dbprefix]]store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_WISHLIST_ID_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_5B911879575538E6B9C077B194431722` (`wishlist_item_id`), KEY `[[DBPREFIX]]WISHLIST_ITEM_OPT_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` (`product_id`), CONSTRAINT `FK_5B911879575538E6B9C077B194431722` FOREIGN KEY (`wishlist_item_id`) REFERENCES `[[dbprefix]]wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE, CONSTRAINT `[[DBPREFIX]]WISHLIST_ITEM_OPT_PRD_ID_[[DBPREFIX]]CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `[[dbprefix]]catalog_product_entity` (`entity_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;
-- -- Dumping routines for database 'magento2211' -- /*!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 */;