whoami7 - Manager
:
/
data
/
copia_seguridad
/
nc_20240315
/
Upload File:
files >> /data/copia_seguridad/nc_20240315/basedatos.sql
-- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64) -- -- Host: localhost Database: nc -- ------------------------------------------------------ -- Server version 8.0.33-0ubuntu0.20.04.2 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!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 `admin_analytics_usage_version_log` -- DROP TABLE IF EXISTS `admin_analytics_usage_version_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_analytics_usage_version_log` ( `id` int 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 `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Notification Viewer Log Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_analytics_usage_version_log` -- LOCK TABLES `admin_analytics_usage_version_log` WRITE; /*!40000 ALTER TABLE `admin_analytics_usage_version_log` DISABLE KEYS */; INSERT INTO `admin_analytics_usage_version_log` VALUES (1,'1.0.0+no-version-set'); /*!40000 ALTER TABLE `admin_analytics_usage_version_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_passwords` -- DROP TABLE IF EXISTS `admin_passwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_passwords` ( `password_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID', `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID', `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash', `expires` int unsigned NOT NULL DEFAULT '0' COMMENT 'Deprecated', `last_updated` int unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated', PRIMARY KEY (`password_id`), KEY `ADMIN_PASSWORDS_USER_ID` (`user_id`), CONSTRAINT `ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Passwords'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_passwords` -- LOCK TABLES `admin_passwords` WRITE; /*!40000 ALTER TABLE `admin_passwords` DISABLE KEYS */; INSERT INTO `admin_passwords` VALUES (1,1,'97c553ea39de81ed075cc943c507ec2fda6353026ffc45645c8f6e698ef8b1f9:3xAAuWkNRhj0dC8bcOaxpZRNiRNVplAX:3_32_2_67108864',0,1702966681),(2,2,'d7cf21b619090e9a4995ddcdd30a2d68cc13971545c9b4c70bddb311a0a41d0b:8TK29t3Ie2uTC63bNVZ0Tj4wDLQ8RNM5:3_32_2_67108864',0,1702970622),(3,2,'18b051c8f4dc33d5a2139f4c0b80c1502839e68a7074362d05b576eff1e45fc8:c3cnLurlNqxXaQu3euzrgBMqKEavOoSe:3_32_2_67108864',0,1702971723),(4,2,'b3f1d7b1bde2b347a146032e1ed1cba337985edcd76e0a761f83482d5eee702a:Qi5dhs4MsO807m7NohpvRVhuGdQs0qHG:3_32_2_67108864',0,1703241199); /*!40000 ALTER TABLE `admin_passwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_system_messages` -- DROP TABLE IF EXISTS `admin_system_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_system_messages` ( `identity` varchar(100) NOT NULL COMMENT 'Message ID', `severity` smallint 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=utf8mb3 COMMENT='Admin System Messages'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_system_messages` -- LOCK TABLES `admin_system_messages` WRITE; /*!40000 ALTER TABLE `admin_system_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_system_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user` -- DROP TABLE IF EXISTS `admin_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_user` ( `user_id` int 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 unsigned NOT NULL DEFAULT '0' COMMENT 'User Login Number', `reload_acl_flag` smallint NOT NULL DEFAULT '0' COMMENT 'Reload ACL', `is_active` smallint 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 DEFAULT '0' COMMENT 'Failure Number', `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure', `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates', PRIMARY KEY (`user_id`), UNIQUE KEY `ADMIN_USER_USERNAME` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Admin User Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_user` -- LOCK TABLES `admin_user` WRITE; /*!40000 ALTER TABLE `admin_user` DISABLE KEYS */; INSERT INTO `admin_user` VALUES (1,'Roberto','Nieto','proyectos@ncdesarrollos.es','roberto','97c553ea39de81ed075cc943c507ec2fda6353026ffc45645c8f6e698ef8b1f9:3xAAuWkNRhj0dC8bcOaxpZRNiRNVplAX:3_32_2_67108864','2023-12-19 06:18:01','2024-03-15 07:07:51','2024-03-15 07:07:51',18,0,1,'{\"configState\":{\"general_country\":\"0\",\"general_region\":\"0\",\"general_locale\":\"0\",\"general_store_information\":\"0\",\"general_single_store_mode\":\"0\",\"mageplaza_general\":\"1\",\"customer_account_share\":\"0\",\"customer_online_customers\":\"0\",\"customer_create_account\":\"1\",\"customer_account_information\":\"1\",\"customer_address\":\"1\",\"customer_password\":\"1\",\"customer_startup\":\"1\",\"customer_address_templates\":\"1\",\"customer_captcha\":\"1\",\"admin_url\":\"0\",\"admin_startup\":\"0\",\"admin_emails\":\"0\",\"system_cron\":\"0\",\"system_smtp\":\"0\",\"system_mysqlmq\":\"0\",\"system_currency\":\"0\",\"system_security\":\"0\",\"system_adminnotification\":\"0\",\"system_backup\":\"0\",\"system_bulk\":\"0\",\"system_full_page_cache\":\"0\",\"system_media_storage_configuration\":\"0\",\"system_upload_configuration\":\"0\",\"system_media_gallery\":\"0\",\"system_media_gallery_renditions\":\"0\",\"catalog_available\":\"0\",\"catalog_fields_masks\":\"0\",\"catalog_frontend\":\"0\",\"catalog_review\":\"0\",\"catalog_productalert\":\"0\",\"catalog_productalert_cron\":\"0\",\"catalog_placeholder\":\"0\",\"catalog_recently_products\":\"0\",\"catalog_product_video\":\"0\",\"catalog_price\":\"0\",\"catalog_layered_navigation\":\"0\",\"catalog_search\":\"0\",\"catalog_seo\":\"0\",\"catalog_navigation\":\"0\",\"catalog_downloadable\":\"0\",\"catalog_custom_options\":\"0\",\"web_url\":\"0\",\"web_seo\":\"0\",\"web_unsecure\":\"0\",\"web_secure\":\"0\",\"web_default\":\"0\",\"web_default_layouts\":\"0\",\"web_cookie\":\"0\",\"currency_options\":\"0\",\"currency_fixerio\":\"0\",\"currency_fixerio_apilayer\":\"0\",\"currency_currencyconverterapi\":\"0\",\"currency_import\":\"0\",\"trans_email_ident_general\":\"1\",\"trans_email_ident_sales\":\"1\",\"trans_email_ident_support\":\"1\",\"trans_email_ident_custom1\":\"1\",\"trans_email_ident_custom2\":\"1\",\"contact_contact\":\"1\",\"contact_email\":\"1\",\"reports_dashboard\":\"0\",\"reports_options\":\"0\",\"cms_wysiwyg\":\"0\",\"cms_pagebuilder\":\"0\",\"newrelicreporting_general\":\"0\",\"newrelicreporting_cron\":\"0\",\"cataloginventory_options\":\"0\",\"cataloginventory_item_options\":\"0\",\"sitemap_category\":\"0\",\"sitemap_product\":\"0\",\"sitemap_page\":\"0\",\"sitemap_store\":\"0\",\"sitemap_generate\":\"0\",\"sitemap_limit\":\"0\",\"sitemap_search_engines\":\"0\",\"rss_config\":\"0\",\"rss_wishlist\":\"0\",\"rss_catalog\":\"0\",\"rss_order\":\"0\",\"login_as_customer_general\":\"0\",\"newsletter_general\":\"0\",\"newsletter_subscription\":\"0\",\"wishlist_general\":\"0\",\"wishlist_email\":\"0\",\"wishlist_wishlist_link\":\"0\",\"sales_general\":\"0\",\"sales_totals_sort\":\"0\",\"sales_cancellation\":\"0\",\"sales_reorder\":\"0\",\"sales_identity\":\"0\",\"sales_zerograndtotal_creditmemo\":\"0\",\"sales_minimum_order\":\"0\",\"sales_dashboard\":\"0\",\"sales_orders\":\"0\",\"sales_gift_options\":\"0\",\"sales_msrp\":\"0\",\"sales_instant_purchase\":\"0\",\"sales_backpressure\":\"0\",\"sales_email_general\":\"0\",\"sales_email_order\":\"0\",\"sales_email_order_comment\":\"0\",\"sales_email_invoice\":\"0\",\"sales_email_invoice_comment\":\"0\",\"sales_email_shipment\":\"0\",\"sales_email_shipment_comment\":\"0\",\"sales_email_creditmemo\":\"0\",\"sales_email_creditmemo_comment\":\"0\",\"sales_pdf_invoice\":\"0\",\"sales_pdf_shipment\":\"0\",\"sales_pdf_creditmemo\":\"0\",\"tax_classes\":\"0\",\"tax_calculation\":\"0\",\"tax_defaults\":\"0\",\"tax_display\":\"0\",\"tax_cart_display\":\"0\",\"tax_sales_display\":\"0\",\"tax_weee\":\"0\",\"checkout_options\":\"0\",\"checkout_cart\":\"0\",\"checkout_cart_link\":\"0\",\"checkout_sidebar\":\"0\",\"checkout_payment_failed\":\"1\",\"shipping_origin\":\"0\",\"shipping_shipping_policy\":\"0\",\"carriers_flatrate\":\"0\",\"carriers_freeshipping\":\"0\",\"carriers_tablerate\":\"0\",\"carriers_ups\":\"0\",\"carriers_usps\":\"0\",\"carriers_fedex\":\"0\",\"carriers_dhl\":\"0\",\"google_analytics\":\"1\",\"google_adwords\":\"1\",\"google_gtag\":\"1\",\"payment_es_other_paypal_payment_solutions\":\"0\",\"payment_es_free\":\"0\",\"payment_es_checkmo\":\"0\",\"payment_es_banktransfer\":\"0\",\"payment_es_cashondelivery\":\"0\",\"payment_es_purchaseorder\":\"0\",\"payment_es_account\":\"1\",\"payment_es_recommended_solutions\":\"1\",\"payment_es_express_checkout_other\":\"0\",\"payment_es_paypal_group_all_in_one\":\"1\",\"payment_es_other_payment_methods\":\"1\",\"admin_security\":\"1\",\"admin_dashboard\":\"0\",\"admin_grid\":\"0\",\"admin_captcha\":\"0\",\"admin_usage\":\"0\",\"dev_front_end_development_workflow\":\"0\",\"dev_restrict\":\"0\",\"dev_debug\":\"0\"}}',NULL,NULL,'es_ES',0,NULL,NULL),(2,'Antonio David','Martinez','marketing1@piquerasycrespo.com','antonio david','b3f1d7b1bde2b347a146032e1ed1cba337985edcd76e0a761f83482d5eee702a:Qi5dhs4MsO807m7NohpvRVhuGdQs0qHG:3_32_2_67108864','2023-12-19 07:23:42','2024-03-06 07:30:52','2024-03-06 07:30:52',20,0,1,'{\"configState\":{\"general_country\":\"0\",\"web_url\":\"0\"}}',NULL,NULL,'es_ES',0,NULL,NULL); /*!40000 ALTER TABLE `admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user_expiration` -- DROP TABLE IF EXISTS `admin_user_expiration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_user_expiration` ( `user_id` int unsigned NOT NULL COMMENT 'User ID', `expires_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date', PRIMARY KEY (`user_id`), CONSTRAINT `ADMIN_USER_EXPIRATION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Admin User expiration dates table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_user_expiration` -- LOCK TABLES `admin_user_expiration` WRITE; /*!40000 ALTER TABLE `admin_user_expiration` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_user_expiration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user_session` -- DROP TABLE IF EXISTS `admin_user_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_user_session` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used', `user_id` int unsigned DEFAULT NULL COMMENT 'Admin User ID', `status` smallint 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 `ADMIN_USER_SESSION_SESSION_ID` (`session_id`), KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`), CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb3 COMMENT='Admin User sessions table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_user_session` -- LOCK TABLES `admin_user_session` WRITE; /*!40000 ALTER TABLE `admin_user_session` DISABLE KEYS */; INSERT INTO `admin_user_session` VALUES (32,NULL,1,1,'2024-03-14 06:00:06','2024-03-14 06:41:06','185.137.143.75'),(33,NULL,1,1,'2024-03-14 08:21:50','2024-03-14 09:01:55','185.137.143.75'),(34,NULL,1,1,'2024-03-14 10:39:49','2024-03-14 10:40:24','185.137.143.75'),(35,NULL,1,1,'2024-03-14 13:20:09','2024-03-14 13:20:09','185.137.143.75'),(36,NULL,1,1,'2024-03-15 05:53:06','2024-03-15 06:07:01','185.137.143.75'),(37,NULL,1,1,'2024-03-15 06:31:02','2024-03-15 06:31:02','185.137.143.75'),(38,NULL,1,1,'2024-03-15 07:07:51','2024-03-15 07:07:51','185.137.143.75'); /*!40000 ALTER TABLE `admin_user_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adminnotification_inbox` -- DROP TABLE IF EXISTS `adminnotification_inbox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `adminnotification_inbox` ( `notification_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID', `severity` smallint 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 unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification read', `is_remove` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Flag if notification might be removed', PRIMARY KEY (`notification_id`), KEY `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`), KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`), KEY `ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Adminnotification Inbox'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `adminnotification_inbox` -- LOCK TABLES `adminnotification_inbox` WRITE; /*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */; INSERT INTO `adminnotification_inbox` VALUES (1,4,'2023-12-19 06:18:00','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',1,0); /*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `authorization_role` -- DROP TABLE IF EXISTS `authorization_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `authorization_role` ( `role_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID', `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Role ID', `tree_level` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Tree Level', `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Role Sort Order', `role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type', `user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'User ID', `user_type` varchar(16) DEFAULT NULL COMMENT 'User Type', `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name', PRIMARY KEY (`role_id`), KEY `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`), KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Role Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `authorization_role` -- LOCK TABLES `authorization_role` WRITE; /*!40000 ALTER TABLE `authorization_role` DISABLE KEYS */; INSERT INTO `authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(2,1,2,0,'U',1,'2','roberto'),(3,0,1,0,'U',1,'1','11'),(6,1,2,0,'U',2,'2','Antonio David'); /*!40000 ALTER TABLE `authorization_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `authorization_rule` -- DROP TABLE IF EXISTS `authorization_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `authorization_rule` ( `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID', `role_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Role ID', `resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID', `privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges', `permission` varchar(10) DEFAULT NULL COMMENT 'Permission', PRIMARY KEY (`rule_id`), KEY `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`), KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`), CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=708 DEFAULT CHARSET=utf8mb3 COMMENT='Admin Rule Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `authorization_rule` -- LOCK TABLES `authorization_rule` WRITE; /*!40000 ALTER TABLE `authorization_rule` DISABLE KEYS */; INSERT INTO `authorization_rule` VALUES (1,1,'Magento_Backend::all',NULL,'allow'),(470,3,'Magento_Backend::all',NULL,'deny'),(471,3,'Magento_Backend::admin',NULL,'allow'),(472,3,'Magento_Backend::dashboard',NULL,'deny'),(473,3,'Magento_Analytics::analytics',NULL,'allow'),(474,3,'Magento_Analytics::analytics_api',NULL,'allow'),(475,3,'Magento_Sales::sales',NULL,'deny'),(476,3,'Magento_Sales::sales_operation',NULL,'deny'),(477,3,'Magento_Sales::sales_order',NULL,'deny'),(478,3,'Magento_Sales::actions',NULL,'deny'),(479,3,'Magento_Sales::create',NULL,'deny'),(480,3,'Magento_Sales::actions_view',NULL,'deny'),(481,3,'Magento_Sales::email',NULL,'deny'),(482,3,'Magento_Sales::reorder',NULL,'deny'),(483,3,'Magento_Sales::actions_edit',NULL,'deny'),(484,3,'Magento_Sales::cancel',NULL,'deny'),(485,3,'Magento_Sales::review_payment',NULL,'deny'),(486,3,'Magento_Sales::capture',NULL,'deny'),(487,3,'Magento_Sales::invoice',NULL,'deny'),(488,3,'Magento_Sales::creditmemo',NULL,'deny'),(489,3,'Magento_Sales::hold',NULL,'deny'),(490,3,'Magento_Sales::unhold',NULL,'deny'),(491,3,'Magento_Sales::ship',NULL,'deny'),(492,3,'Magento_Sales::comment',NULL,'deny'),(493,3,'Magento_Sales::emails',NULL,'deny'),(494,3,'Magento_Paypal::authorization',NULL,'deny'),(495,3,'Magento_Sales::sales_invoice',NULL,'deny'),(496,3,'Magento_Sales::shipment',NULL,'deny'),(497,3,'Magento_Sales::sales_creditmemo',NULL,'deny'),(498,3,'Magento_Paypal::billing_agreement',NULL,'deny'),(499,3,'Magento_Paypal::billing_agreement_actions',NULL,'deny'),(500,3,'Magento_Paypal::billing_agreement_actions_view',NULL,'deny'),(501,3,'Magento_Paypal::actions_manage',NULL,'deny'),(502,3,'Magento_Paypal::use',NULL,'deny'),(503,3,'Magento_Sales::transactions',NULL,'deny'),(504,3,'Magento_Sales::transactions_fetch',NULL,'deny'),(505,3,'Magento_Catalog::catalog',NULL,'deny'),(506,3,'Magento_Catalog::catalog_inventory',NULL,'deny'),(507,3,'Magento_Catalog::products',NULL,'deny'),(508,3,'Magento_Catalog::update_attributes',NULL,'deny'),(509,3,'Magento_Catalog::edit_product_design',NULL,'deny'),(510,3,'Magento_Catalog::categories',NULL,'deny'),(511,3,'Magento_Catalog::edit_category_design',NULL,'deny'),(512,3,'Magento_Customer::customer',NULL,'deny'),(513,3,'Magento_Customer::manage',NULL,'deny'),(514,3,'Magento_Customer::actions',NULL,'deny'),(515,3,'Magento_Customer::delete',NULL,'deny'),(516,3,'Magento_Customer::reset_password',NULL,'deny'),(517,3,'Magento_Customer::invalidate_tokens',NULL,'deny'),(518,3,'Magento_LoginAsCustomer::allow_shopping_assistance',NULL,'deny'),(519,3,'Magento_Customer::online',NULL,'deny'),(520,3,'Magento_Customer::group',NULL,'deny'),(521,3,'Magento_LoginAsCustomer::login',NULL,'deny'),(522,3,'Magento_LoginAsCustomerLog::login_log',NULL,'deny'),(523,3,'Magento_Cart::cart',NULL,'deny'),(524,3,'Magento_Cart::manage',NULL,'deny'),(525,3,'Magento_Backend::myaccount',NULL,'deny'),(526,3,'Magento_Backend::marketing',NULL,'deny'),(527,3,'Magento_CatalogRule::promo',NULL,'deny'),(528,3,'Magento_CatalogRule::promo_catalog',NULL,'deny'),(529,3,'Magento_SalesRule::quote',NULL,'deny'),(530,3,'Magento_Backend::marketing_communications',NULL,'deny'),(531,3,'Magento_Email::template',NULL,'deny'),(532,3,'Magento_Newsletter::template',NULL,'deny'),(533,3,'Magento_Newsletter::queue',NULL,'deny'),(534,3,'Magento_Newsletter::subscriber',NULL,'deny'),(535,3,'Magento_Backend::marketing_seo',NULL,'deny'),(536,3,'Magento_Search::search',NULL,'deny'),(537,3,'Magento_Search::synonyms',NULL,'deny'),(538,3,'Magento_UrlRewrite::urlrewrite',NULL,'deny'),(539,3,'Magento_Sitemap::sitemap',NULL,'deny'),(540,3,'Magento_Backend::marketing_user_content',NULL,'deny'),(541,3,'Magento_Review::reviews_all',NULL,'deny'),(542,3,'Magento_Review::pending',NULL,'deny'),(543,3,'Mageplaza_Core::menu',NULL,'deny'),(544,3,'Mageplaza_Core::documentation',NULL,'deny'),(545,3,'Mageplaza_Core::userguide',NULL,'deny'),(546,3,'Mageplaza_Core::activate',NULL,'deny'),(547,3,'Magento_Backend::content',NULL,'deny'),(548,3,'Magento_Backend::content_elements',NULL,'deny'),(549,3,'Magento_Cms::page',NULL,'deny'),(550,3,'Magento_Cms::save',NULL,'deny'),(551,3,'Magento_Cms::save_design',NULL,'deny'),(552,3,'Magento_Cms::page_delete',NULL,'deny'),(553,3,'Magento_Cms::block',NULL,'deny'),(554,3,'Magento_Widget::widget_instance',NULL,'deny'),(555,3,'Magento_Cms::media_gallery',NULL,'deny'),(556,3,'Magento_MediaGalleryUiApi::insert_assets',NULL,'deny'),(557,3,'Magento_MediaGalleryUiApi::upload_assets',NULL,'deny'),(558,3,'Magento_MediaGalleryUiApi::edit_assets',NULL,'deny'),(559,3,'Magento_MediaGalleryUiApi::delete_assets',NULL,'deny'),(560,3,'Magento_MediaGalleryUiApi::create_folder',NULL,'deny'),(561,3,'Magento_MediaGalleryUiApi::delete_folder',NULL,'deny'),(562,3,'Magento_PageBuilder::templates',NULL,'deny'),(563,3,'Magento_PageBuilder::template_save',NULL,'deny'),(564,3,'Magento_PageBuilder::template_apply',NULL,'deny'),(565,3,'Magento_PageBuilder::template_delete',NULL,'deny'),(566,3,'Magento_Backend::design',NULL,'deny'),(567,3,'Magento_Theme::theme',NULL,'deny'),(568,3,'Magento_Backend::schedule',NULL,'deny'),(569,3,'Magento_Backend::content_translation',NULL,'deny'),(570,3,'Magento_Reports::report',NULL,'deny'),(571,3,'Magento_Reports::report_marketing',NULL,'deny'),(572,3,'Magento_Reports::shopcart',NULL,'deny'),(573,3,'Magento_Reports::product',NULL,'deny'),(574,3,'Magento_Reports::abandoned',NULL,'deny'),(575,3,'Magento_Reports::report_search',NULL,'deny'),(576,3,'Magento_Newsletter::problem',NULL,'deny'),(577,3,'Magento_Reports::review',NULL,'deny'),(578,3,'Magento_Reports::review_customer',NULL,'deny'),(579,3,'Magento_Reports::review_product',NULL,'deny'),(580,3,'Magento_Reports::salesroot',NULL,'deny'),(581,3,'Magento_Reports::salesroot_sales',NULL,'deny'),(582,3,'Magento_Reports::tax',NULL,'deny'),(583,3,'Magento_Reports::invoiced',NULL,'deny'),(584,3,'Magento_Reports::shipping',NULL,'deny'),(585,3,'Magento_Reports::refunded',NULL,'deny'),(586,3,'Magento_Reports::coupons',NULL,'deny'),(587,3,'Magento_Paypal::paypal_settlement_reports',NULL,'deny'),(588,3,'Magento_Paypal::paypal_settlement_reports_view',NULL,'deny'),(589,3,'Magento_Paypal::fetch',NULL,'deny'),(590,3,'Magento_Reports::customers',NULL,'deny'),(591,3,'Magento_Reports::totals',NULL,'deny'),(592,3,'Magento_Reports::customers_orders',NULL,'deny'),(593,3,'Magento_Reports::accounts',NULL,'deny'),(594,3,'Magento_Reports::report_products',NULL,'deny'),(595,3,'Magento_Reports::viewed',NULL,'deny'),(596,3,'Magento_Reports::bestsellers',NULL,'deny'),(597,3,'Magento_Reports::lowstock',NULL,'deny'),(598,3,'Magento_Reports::sold',NULL,'deny'),(599,3,'Magento_Reports::downloads',NULL,'deny'),(600,3,'Magento_Reports::statistics',NULL,'deny'),(601,3,'Magento_Reports::statistics_refresh',NULL,'deny'),(602,3,'Magento_Analytics::business_intelligence',NULL,'deny'),(603,3,'Magento_Analytics::advanced_reporting',NULL,'deny'),(604,3,'Magento_Analytics::bi_essentials',NULL,'deny'),(605,3,'Magento_Backend::stores',NULL,'deny'),(606,3,'Magento_Backend::stores_settings',NULL,'deny'),(607,3,'Magento_Backend::store',NULL,'deny'),(608,3,'Magento_Config::config',NULL,'deny'),(609,3,'Magento_Cms::config_cms',NULL,'deny'),(610,3,'Magento_Catalog::config_catalog',NULL,'deny'),(611,3,'Magento_CatalogSearch::config_catalog_search',NULL,'deny'),(612,3,'Magento_CatalogInventory::cataloginventory',NULL,'deny'),(613,3,'Magento_Payment::payment',NULL,'deny'),(614,3,'Magento_Payment::payment_services',NULL,'deny'),(615,3,'Magento_Contact::contact',NULL,'deny'),(616,3,'Magento_Downloadable::downloadable',NULL,'deny'),(617,3,'Magento_Newsletter::newsletter',NULL,'deny'),(618,3,'Magento_GoogleAnalytics::google',NULL,'deny'),(619,3,'Magento_LoginAsCustomer::config_section',NULL,'deny'),(620,3,'Magento_Shipping::config_shipping',NULL,'deny'),(621,3,'Magento_Shipping::shipping_policy',NULL,'deny'),(622,3,'Magento_Shipping::carriers',NULL,'deny'),(623,3,'Magento_Multishipping::config_multishipping',NULL,'deny'),(624,3,'Mageplaza_Core::configuration',NULL,'deny'),(625,3,'Mageplaza_Core::marketplace',NULL,'deny'),(626,3,'Magento_Config::config_general',NULL,'deny'),(627,3,'Magento_Integration::config_oauth',NULL,'deny'),(628,3,'Magento_Webapi::config_webapi',NULL,'deny'),(629,3,'Magento_Config::web',NULL,'deny'),(630,3,'Magento_Config::config_design',NULL,'deny'),(631,3,'Magento_Customer::config_customer',NULL,'deny'),(632,3,'Magento_Paypal::paypal',NULL,'deny'),(633,3,'Magento_Tax::config_tax',NULL,'deny'),(634,3,'Magento_Checkout::checkout',NULL,'deny'),(635,3,'Magento_Sales::config_sales',NULL,'deny'),(636,3,'Magento_Persistent::persistent',NULL,'deny'),(637,3,'Magento_Sales::sales_email',NULL,'deny'),(638,3,'Magento_Sales::sales_pdf',NULL,'deny'),(639,3,'Magento_Sitemap::config_sitemap',NULL,'deny'),(640,3,'Magento_Reports::reports',NULL,'deny'),(641,3,'Magento_Config::config_system',NULL,'deny'),(642,3,'Magento_Wishlist::config_wishlist',NULL,'deny'),(643,3,'Magento_SalesRule::config_promo',NULL,'deny'),(644,3,'Magento_Config::config_admin',NULL,'deny'),(645,3,'Magento_Config::trans_email',NULL,'deny'),(646,3,'Magento_Config::dev',NULL,'deny'),(647,3,'Magento_Config::currency',NULL,'deny'),(648,3,'Magento_Rss::rss',NULL,'deny'),(649,3,'Magento_Config::sendfriend',NULL,'deny'),(650,3,'Magento_Analytics::analytics_settings',NULL,'deny'),(651,3,'Magento_NewRelicReporting::config_newrelicreporting',NULL,'deny'),(652,3,'Magento_CheckoutAgreements::checkoutagreement',NULL,'deny'),(653,3,'Magento_Sales::order_statuses',NULL,'deny'),(654,3,'Magento_Tax::manage_tax',NULL,'deny'),(655,3,'Magento_CurrencySymbol::system_currency',NULL,'deny'),(656,3,'Magento_CurrencySymbol::currency_rates',NULL,'deny'),(657,3,'Magento_CurrencySymbol::symbols',NULL,'deny'),(658,3,'Magento_Backend::stores_attributes',NULL,'deny'),(659,3,'Magento_Catalog::attributes_attributes',NULL,'deny'),(660,3,'Magento_Catalog::sets',NULL,'deny'),(661,3,'Magento_Review::ratings',NULL,'deny'),(662,3,'Magento_Swatches::iframe',NULL,'deny'),(663,3,'Magento_Backend::stores_other_settings',NULL,'deny'),(664,3,'Magento_Backend::system',NULL,'deny'),(665,3,'Magento_Backend::convert',NULL,'deny'),(666,3,'Magento_ImportExport::import',NULL,'deny'),(667,3,'Magento_ImportExport::export',NULL,'deny'),(668,3,'Magento_TaxImportExport::import_export',NULL,'deny'),(669,3,'Magento_ImportExport::history',NULL,'deny'),(670,3,'Magento_Backend::extensions',NULL,'deny'),(671,3,'Magento_Backend::local',NULL,'deny'),(672,3,'Magento_Backend::custom',NULL,'deny'),(673,3,'Magento_Integration::extensions',NULL,'deny'),(674,3,'Magento_Integration::integrations',NULL,'deny'),(675,3,'Magento_Backend::tools',NULL,'deny'),(676,3,'Magento_Backend::cache',NULL,'deny'),(677,3,'Magento_Backend::main_actions',NULL,'deny'),(678,3,'Magento_Backend::flush_cache_storage',NULL,'deny'),(679,3,'Magento_Backend::flush_magento_cache',NULL,'deny'),(680,3,'Magento_Backend::mass_actions',NULL,'deny'),(681,3,'Magento_Backend::toggling_cache_type',NULL,'deny'),(682,3,'Magento_Backend::refresh_cache_type',NULL,'deny'),(683,3,'Magento_Backend::additional_cache_management',NULL,'deny'),(684,3,'Magento_Backend::flush_catalog_images',NULL,'deny'),(685,3,'Magento_Backend::flush_js_css',NULL,'deny'),(686,3,'Magento_Backend::flush_static_files',NULL,'deny'),(687,3,'Magento_Backup::backup',NULL,'deny'),(688,3,'Magento_Backup::rollback',NULL,'deny'),(689,3,'Magento_Indexer::index',NULL,'deny'),(690,3,'Magento_Indexer::changeMode',NULL,'deny'),(691,3,'Magento_Indexer::invalidate',NULL,'deny'),(692,3,'Magento_User::acl',NULL,'deny'),(693,3,'Magento_User::acl_users',NULL,'deny'),(694,3,'Magento_User::locks',NULL,'deny'),(695,3,'Magento_User::acl_roles',NULL,'deny'),(696,3,'Magento_Logging::magento_logging',NULL,'deny'),(697,3,'Magento_Logging::magento_logging_events',NULL,'deny'),(698,3,'Magento_Logging::system_magento_logging_bulk_operations',NULL,'deny'),(699,3,'Magento_Backend::system_other_settings',NULL,'deny'),(700,3,'Magento_AdminNotification::adminnotification',NULL,'deny'),(701,3,'Magento_AdminNotification::show_toolbar',NULL,'deny'),(702,3,'Magento_AdminNotification::show_list',NULL,'deny'),(703,3,'Magento_AdminNotification::mark_as_read',NULL,'deny'),(704,3,'Magento_AdminNotification::adminnotification_remove',NULL,'deny'),(705,3,'Magento_Variable::variable',NULL,'deny'),(706,3,'Magento_EncryptionKey::crypt_key',NULL,'deny'),(707,3,'Magento_Backend::global_search',NULL,'deny'); /*!40000 ALTER TABLE `authorization_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache` -- DROP TABLE IF EXISTS `cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cache` ( `id` varchar(200) NOT NULL COMMENT 'Cache Id', `data` mediumblob COMMENT 'Cache Data', `create_time` int DEFAULT NULL COMMENT 'Cache Creation Time', `update_time` int DEFAULT NULL COMMENT 'Time of Cache Updating', `expire_time` int DEFAULT NULL COMMENT 'Cache Expiration Time', PRIMARY KEY (`id`), KEY `CACHE_EXPIRE_TIME` (`expire_time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Caches'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache` -- LOCK TABLES `cache` WRITE; /*!40000 ALTER TABLE `cache` DISABLE KEYS */; /*!40000 ALTER TABLE `cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_tag` -- DROP TABLE IF EXISTS `cache_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cache_tag` ( `tag` varchar(100) NOT NULL COMMENT 'Tag', `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id', PRIMARY KEY (`tag`,`cache_id`), KEY `CACHE_TAG_CACHE_ID` (`cache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tag Caches'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_tag` -- LOCK TABLES `cache_tag` WRITE; /*!40000 ALTER TABLE `cache_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `captcha_log` -- DROP TABLE IF EXISTS `captcha_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `captcha_log` ( `type` varchar(32) NOT NULL COMMENT 'Type', `value` varchar(255) NOT NULL COMMENT 'Value', `count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Count', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time', PRIMARY KEY (`type`,`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Count Login Attempts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `captcha_log` -- LOCK TABLES `captcha_log` WRITE; /*!40000 ALTER TABLE `captcha_log` DISABLE KEYS */; /*!40000 ALTER TABLE `captcha_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity` -- DROP TABLE IF EXISTS `catalog_category_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID', `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent Category ID', `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', `path` varchar(255) NOT NULL COMMENT 'Tree Path', `position` int NOT NULL COMMENT 'Position', `level` int NOT NULL DEFAULT '0' COMMENT 'Tree Level', `children_count` int NOT NULL COMMENT 'Child Count', PRIMARY KEY (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`), KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity` -- LOCK TABLES `catalog_category_entity` WRITE; /*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */; INSERT INTO `catalog_category_entity` VALUES (1,3,0,'2023-12-19 06:17:59','2024-02-09 07:50:09','1',0,0,5),(2,3,1,'2023-12-19 06:17:59','2024-02-09 07:50:09','1/2',1,1,4),(3,3,2,'2024-02-08 07:09:06','2024-02-12 09:05:32','1/2/3',1,2,1),(4,3,2,'2024-02-08 07:10:09','2024-02-12 09:08:27','1/2/4',2,2,0),(5,3,2,'2024-02-08 07:10:33','2024-02-09 07:15:05','1/2/5',3,2,0),(6,3,3,'2024-02-09 07:50:09','2024-02-12 09:09:36','1/2/3/6',1,3,0); /*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_datetime` -- DROP TABLE IF EXISTS `catalog_category_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity_datetime` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` datetime DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`), CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Datetime Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_datetime` -- LOCK TABLES `catalog_category_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */; INSERT INTO `catalog_category_entity_datetime` VALUES (1,61,0,3,NULL),(2,62,0,3,NULL),(3,61,0,4,NULL),(4,62,0,4,NULL),(5,61,0,5,NULL),(6,62,0,5,NULL),(7,61,0,6,NULL),(8,62,0,6,NULL); /*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_decimal` -- DROP TABLE IF EXISTS `catalog_category_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity_decimal` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` decimal(20,6) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`), CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Decimal Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_decimal` -- LOCK TABLES `catalog_category_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_int` -- DROP TABLE IF EXISTS `catalog_category_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity_int` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` int DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`), CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Integer Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_int` -- LOCK TABLES `catalog_category_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */; INSERT INTO `catalog_category_entity_int` VALUES (1,69,0,1,1),(2,69,0,2,1),(3,46,0,2,1),(4,46,0,3,1),(5,54,0,3,1),(6,69,0,3,1),(7,70,0,3,0),(8,71,0,3,0),(9,46,0,4,1),(10,54,0,4,1),(11,69,0,4,1),(12,70,0,4,0),(13,71,0,4,0),(14,46,0,5,0),(15,54,0,5,1),(16,69,0,5,0),(17,70,0,5,0),(18,71,0,5,0),(19,53,0,3,3),(20,53,0,4,4),(21,53,0,5,5),(22,46,0,6,1),(23,54,0,6,1),(24,69,0,6,1),(25,70,0,6,0),(26,71,0,6,0),(27,53,0,6,7); /*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_text` -- DROP TABLE IF EXISTS `catalog_category_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity_text` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` mediumtext COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`), CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Text Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_text` -- LOCK TABLES `catalog_category_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */; INSERT INTO `catalog_category_entity_text` VALUES (1,47,0,3,NULL),(2,50,0,3,'Aprovecha al máximo tu comercio electrónico con nuestra solución de integración bidireccional entre Magento y SAP. Sincroniza pedidos, inventario, precios y más. Descubre cómo NC Desarrollos simplifica la gestión de tu negocio en línea y ERP'),(3,51,0,3,'Solución de integración SAP Business One - Adobe Ecommerce, Integración de datos bidireccional y automatizada entre Magento y SAP, sincronización entre tu e-commerce y SAP Business One'),(4,47,0,4,NULL),(5,50,0,4,'Aprovecha al máximo tu comercio electrónico con nuestra solución de integración entre Magento y SAP. Por solo 1500€ al mes, sincroniza datos bidireccionalmente para una gestión eficiente. Descubre cómo NC Desarrollos hace fácil la integración de tu negocio en línea y ERP'),(6,51,0,4,'Precio Conector SAP Business One - Magento 2, Precio Magento SAP Business One Integration'),(7,47,0,5,NULL),(8,50,0,5,NULL),(9,51,0,5,NULL),(10,47,0,6,NULL),(11,50,0,6,'Mejoras progradas para el conector\r\nTrabajamos para ofrecerte una mejor integración\r\nEstablecemos líneas de desarrollo de acuerdo a las necesidades de nuestros usuarios. Nuestro objetivo, poner a tu disposición una sincronización entre tu e-commerce y SAP Business One cada vez más fácil.'),(12,51,0,6,'integración Magento - SAP Business One, conector SAP Business One Magento 2'); /*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_varchar` -- DROP TABLE IF EXISTS `catalog_category_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_entity_varchar` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`), KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`), CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Varchar Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_varchar` -- LOCK TABLES `catalog_category_entity_varchar` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */; INSERT INTO `catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,52,0,2,'PRODUCTS'),(3,45,0,2,'Default Category'),(4,45,0,3,'Funcionalidades'),(5,52,0,3,'PAGE'),(6,63,0,3,'cms-full-width'),(7,119,0,3,'conector-bidireccional-sap-business-one-magento-2'),(8,120,0,3,'conector-bidireccional-sap-business-one-magento-2'),(9,45,0,4,'Precios'),(10,52,0,4,'PAGE'),(11,63,0,4,'cms-full-width'),(12,119,0,4,'precios'),(13,120,0,4,'precios'),(14,45,0,5,'Casos de éxito'),(15,52,0,5,'PAGE'),(16,63,0,5,'cms-full-width'),(17,119,0,5,'casos-de-exito'),(18,120,0,5,'casos-de-exito'),(20,48,0,3,NULL),(21,49,0,3,'Conector Bidireccional SAP B1 - Magento 2'),(22,60,0,3,NULL),(25,48,0,4,NULL),(26,49,0,4,'Precio del conector SAP Business One - Magento 2'),(27,60,0,4,NULL),(29,48,0,5,NULL),(30,49,0,5,NULL),(31,60,0,5,NULL),(35,45,0,6,'Mejoras programadas'),(36,52,0,6,'PAGE'),(37,63,0,6,'cms-full-width'),(38,119,0,6,'mejoras-programadas'),(39,120,0,6,'conector-bidireccional-sap-business-one-magento-2/mejoras-programadas'),(41,48,0,6,NULL),(42,49,0,6,'Mejoras programadas para el conector SAP Business One Magento 2'),(43,60,0,6,NULL); /*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product` -- DROP TABLE IF EXISTS `catalog_category_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product` ( `entity_id` int NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `position` int NOT NULL DEFAULT '0' COMMENT 'Position', PRIMARY KEY (`entity_id`,`category_id`,`product_id`), UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`), KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`), CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Category Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product` -- LOCK TABLES `catalog_category_product` WRITE; /*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_cl` -- DROP TABLE IF EXISTS `catalog_category_product_cl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_cl` ( `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', PRIMARY KEY (`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='catalog_category_product_cl'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_cl` -- LOCK TABLES `catalog_category_product_cl` WRITE; /*!40000 ALTER TABLE `catalog_category_product_cl` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_cl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index` -- DROP TABLE IF EXISTS `catalog_category_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_index` ( `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `position` int DEFAULT NULL COMMENT 'Position', `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `visibility` smallint unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index` -- LOCK TABLES `catalog_category_product_index` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_replica` -- DROP TABLE IF EXISTS `catalog_category_product_index_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_index_replica` ( `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `position` int DEFAULT NULL COMMENT 'Position', `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `visibility` smallint unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_replica` -- LOCK TABLES `catalog_category_product_index_replica` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_store1` -- DROP TABLE IF EXISTS `catalog_category_product_index_store1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_index_store1` ( `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id', `position` int DEFAULT NULL COMMENT 'Position', `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id', `visibility` smallint unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `IDX_216E521C8AD125E066D2B0BAB4A08412` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index Store1'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_store1` -- LOCK TABLES `catalog_category_product_index_store1` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_store1` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_store1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_store1_replica` -- DROP TABLE IF EXISTS `catalog_category_product_index_store1_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_index_store1_replica` ( `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category Id', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Id', `position` int DEFAULT NULL COMMENT 'Position', `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Id', `visibility` smallint unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `IDX_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Index Store1 Replica'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_store1_replica` -- LOCK TABLES `catalog_category_product_index_store1_replica` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_product_index_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_category_product_index_tmp` ( `category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Category ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `position` int NOT NULL DEFAULT '0' COMMENT 'Position', `is_parent` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Parent', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `visibility` smallint unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Category Product Indexer temporary table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_tmp` -- LOCK TABLES `catalog_category_product_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_compare_item` -- DROP TABLE IF EXISTS `catalog_compare_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_compare_item` ( `catalog_compare_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare Item ID', `visitor_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Visitor ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `list_id` int unsigned DEFAULT NULL COMMENT 'List ID', PRIMARY KEY (`catalog_compare_item_id`), KEY `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` (`list_id`), KEY `CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`), KEY `CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), KEY `CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`), CONSTRAINT `CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` FOREIGN KEY (`list_id`) REFERENCES `catalog_compare_list` (`list_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_COMPARE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_COMPARE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_compare_item` -- LOCK TABLES `catalog_compare_item` WRITE; /*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_compare_list` -- DROP TABLE IF EXISTS `catalog_compare_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_compare_list` ( `list_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare List ID', `list_id_mask` varchar(32) DEFAULT NULL COMMENT 'Masked ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', PRIMARY KEY (`list_id`), UNIQUE KEY `CATALOG_COMPARE_LIST_CUSTOMER_ID` (`customer_id`), KEY `CATALOG_COMPARE_LIST_LIST_ID_MASK` (`list_id_mask`), CONSTRAINT `CATALOG_COMPARE_LIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Compare List with hash Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_compare_list` -- LOCK TABLES `catalog_compare_list` WRITE; /*!40000 ALTER TABLE `catalog_compare_list` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_compare_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_eav_attribute` -- DROP TABLE IF EXISTS `catalog_eav_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_eav_attribute` ( `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `frontend_input_renderer` varchar(255) DEFAULT NULL COMMENT 'Frontend Input Renderer', `is_global` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Global', `is_visible` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible', `is_searchable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable', `is_filterable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable', `is_comparable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Comparable', `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front', `is_html_allowed_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is HTML Allowed On Front', `is_used_for_price_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Price Rules', `is_filterable_in_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable In Search', `used_in_product_listing` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used In Product Listing', `used_for_sort_by` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Sorting', `apply_to` varchar(255) DEFAULT NULL COMMENT 'Apply To', `is_visible_in_advanced_search` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible In Advanced Search', `position` int NOT NULL DEFAULT '0' COMMENT 'Position', `is_wysiwyg_enabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is WYSIWYG Enabled', `is_used_for_promo_rules` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used For Promo Rules', `is_required_in_admin_store` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Required In Admin Store', `is_used_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid', `is_visible_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid', `is_filterable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid', `search_weight` float NOT NULL DEFAULT '1' COMMENT 'Search Weight', `additional_data` text COMMENT 'Additional swatch attributes data', `is_pagebuilder_enabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is PageBuilder Enabled', PRIMARY KEY (`attribute_id`), KEY `CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`), KEY `CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`), CONSTRAINT `CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog EAV Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_eav_attribute` -- LOCK TABLES `catalog_eav_attribute` WRITE; /*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */; INSERT INTO `catalog_eav_attribute` VALUES (45,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(47,NULL,0,1,0,0,0,0,1,0,0,0,0,NULL,0,0,1,0,0,0,0,0,1,NULL,0),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(51,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(54,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(59,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(63,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(64,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(65,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(66,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(67,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\Available',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(68,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\DefaultSortby',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(70,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(71,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(72,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(73,NULL,0,1,1,0,0,0,0,0,0,1,1,NULL,1,0,0,0,0,0,0,0,5,NULL,0),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,NULL,1,0,0,0,0,0,0,0,6,NULL,0),(75,NULL,0,1,1,0,1,0,1,0,0,0,0,NULL,1,0,1,0,0,0,0,0,1,NULL,1),(76,NULL,0,1,1,0,1,0,1,0,0,1,0,NULL,1,0,1,0,0,1,0,0,1,NULL,0),(77,NULL,1,1,1,1,0,0,0,0,0,1,1,'simple,virtual,bundle,downloadable,configurable',1,0,0,0,0,0,0,0,1,NULL,0),(78,NULL,1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL,0),(79,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,NULL,0),(80,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,0,1,NULL,0),(81,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable',0,0,0,0,0,1,0,1,1,NULL,0),(82,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight',1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL,0),(83,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,configurable',1,0,0,0,0,1,0,1,1,NULL,0),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL,0),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL,0),(86,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL,0),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(88,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(89,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(90,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(91,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(92,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable',0,0,0,0,0,0,0,0,1,NULL,0),(93,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,virtual,configurable',1,0,0,0,0,1,0,1,1,NULL,0),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(95,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(96,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(97,'Magento\\Framework\\Data\\Form\\Element\\Hidden',2,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,1,0,0,0,1,NULL,0),(98,NULL,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,0,0,0,1,NULL,0),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,1,0,0,0,1,NULL,0),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,NULL,0),(101,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(103,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(105,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Category',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(107,NULL,1,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(109,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(110,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(111,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(112,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(113,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(114,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,bundle,grouped,configurable',0,0,0,0,0,1,0,1,1,NULL,0),(115,'Magento\\CatalogInventory\\Block\\Adminhtml\\Form\\Field\\Stock',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(116,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(117,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(118,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(119,NULL,0,1,1,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(120,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(121,NULL,0,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,NULL,0),(122,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(123,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL,0),(124,NULL,1,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,NULL,0),(125,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL,0),(126,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL,0),(127,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,NULL,0),(128,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type',1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,NULL,0),(129,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price',2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,NULL,0),(130,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL,0),(131,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL,0),(132,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL,0),(133,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,NULL,0),(134,'Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,NULL,0),(135,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,NULL,0),(136,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,bundle,downloadable,configurable',0,0,0,0,0,1,0,1,1,NULL,0); /*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option` -- DROP TABLE IF EXISTS `catalog_product_bundle_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `required` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required', `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position', `type` varchar(255) DEFAULT NULL COMMENT 'Type', PRIMARY KEY (`option_id`), KEY `CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`), CONSTRAINT `CAT_PRD_BNDL_OPT_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_option` -- LOCK TABLES `catalog_product_bundle_option` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option_value` -- DROP TABLE IF EXISTS `catalog_product_bundle_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_option_value` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `option_id` int unsigned NOT NULL COMMENT 'Option ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `title` varchar(255) DEFAULT NULL COMMENT 'Title', `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID', PRIMARY KEY (`value_id`), UNIQUE KEY `CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`), CONSTRAINT `CAT_PRD_BNDL_OPT_VAL_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Option Value'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_option_value` -- LOCK TABLES `catalog_product_bundle_option_value` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_price_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_price_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_price_index` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `min_price` decimal(20,6) NOT NULL COMMENT 'Min Price', `max_price` decimal(20,6) NOT NULL COMMENT 'Max Price', PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`), KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`), KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`), CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Price Index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_price_index` -- LOCK TABLES `catalog_product_bundle_price_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_selection` ( `selection_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Selection ID', `option_id` int unsigned NOT NULL COMMENT 'Option ID', `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `position` int unsigned NOT NULL DEFAULT '0' COMMENT 'Position', `is_default` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default', `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type', `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Selection Price Value', `selection_qty` decimal(12,4) DEFAULT NULL COMMENT 'Selection Qty', `selection_can_change_qty` smallint NOT NULL DEFAULT '0' COMMENT 'Selection Can Change Qty', PRIMARY KEY (`selection_id`), KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`), KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`), CONSTRAINT `CAT_PRD_BNDL_SELECTION_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_selection` -- LOCK TABLES `catalog_product_bundle_selection` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection_price` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_selection_price` ( `selection_id` int unsigned NOT NULL COMMENT 'Selection ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `selection_price_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Selection Price Type', `selection_price_value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Selection Price Value', `parent_product_id` int unsigned NOT NULL COMMENT 'Parent Product ID', PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`), KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`), CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE, CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Selection Price'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_selection_price` -- LOCK TABLES `catalog_product_bundle_selection_price` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_stock_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_stock_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_bundle_stock_index` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `stock_status` smallint DEFAULT '0' COMMENT 'Stock Status', PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Bundle Stock Index'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_stock_index` -- LOCK TABLES `catalog_product_bundle_stock_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity` -- DROP TABLE IF EXISTS `catalog_product_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID', `type_id` varchar(32) NOT NULL DEFAULT 'simple' COMMENT 'Type ID', `sku` varchar(64) NOT NULL COMMENT 'SKU', `has_options` smallint NOT NULL DEFAULT '0' COMMENT 'Has Options', `required_options` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Required Options', `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', PRIMARY KEY (`entity_id`), KEY `CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `CATALOG_PRODUCT_ENTITY_SKU` (`sku`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity` -- LOCK TABLES `catalog_product_entity` WRITE; /*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_datetime` -- DROP TABLE IF EXISTS `catalog_product_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_datetime` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` datetime DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Datetime Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_datetime` -- LOCK TABLES `catalog_product_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_decimal` -- DROP TABLE IF EXISTS `catalog_product_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_decimal` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` decimal(20,6) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Decimal Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_decimal` -- LOCK TABLES `catalog_product_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_gallery` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `position` int NOT NULL DEFAULT '0' COMMENT 'Position', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`), KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Gallery Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_gallery` -- LOCK TABLES `catalog_product_entity_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_int` -- DROP TABLE IF EXISTS `catalog_product_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_int` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` int DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID_STORE_ID_VALUE` (`attribute_id`,`store_id`,`value`), CONSTRAINT `CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Integer Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_int` -- LOCK TABLES `catalog_product_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_media_gallery` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', `media_type` varchar(32) NOT NULL DEFAULT 'image' COMMENT 'Media entry type', `disabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Visibility status', PRIMARY KEY (`value_id`), KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Media Gallery Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery` -- LOCK TABLES `catalog_product_entity_media_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_media_gallery_value` ( `value_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Value ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `label` varchar(255) DEFAULT NULL COMMENT 'Label', `position` int unsigned DEFAULT NULL COMMENT 'Position', `disabled` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Disabled', `record_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record ID', PRIMARY KEY (`record_id`), KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`), KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`), KEY `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`), CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VAL_ID_CAT_PRD_ENTT_MDA_GLR_VAL_ID` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Media Gallery Attribute Value Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery_value` -- LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value_to_entity` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_to_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_media_gallery_value_to_entity` ( `value_id` int unsigned NOT NULL COMMENT 'Value media Entry ID', `entity_id` int unsigned NOT NULL COMMENT 'Product Entity ID', PRIMARY KEY (`value_id`,`entity_id`), KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` (`entity_id`), CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `FK_A6C6C8FAA386736921D3A7C4B50B1185` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Link Media value to Product entity table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery_value_to_entity` -- LOCK TABLES `catalog_product_entity_media_gallery_value_to_entity` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value_video` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_video`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_media_gallery_value_video` ( `value_id` int unsigned NOT NULL COMMENT 'Media Entity ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `provider` varchar(32) DEFAULT NULL COMMENT 'Video provider ID', `url` text COMMENT 'Video URL', `title` varchar(255) DEFAULT NULL COMMENT 'Title', `description` text COMMENT 'Page Meta Description', `metadata` text COMMENT 'Video meta data', PRIMARY KEY (`value_id`,`store_id`), KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `FK_6FDF205946906B0E653E60AA769899F8` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Video Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery_value_video` -- LOCK TABLES `catalog_product_entity_media_gallery_value_video` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_text` -- DROP TABLE IF EXISTS `catalog_product_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_text` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` mediumtext COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Text Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_text` -- LOCK TABLES `catalog_product_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_tier_price` -- DROP TABLE IF EXISTS `catalog_product_entity_tier_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_tier_price` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `all_groups` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Applicable To All Customer Groups', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'QTY', `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `percentage_value` decimal(5,2) DEFAULT NULL COMMENT 'Percentage value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`), KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`), CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Tier Price Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_tier_price` -- LOCK TABLES `catalog_product_entity_tier_price` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_tier_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_tier_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_varchar` -- DROP TABLE IF EXISTS `catalog_product_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_entity_varchar` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Varchar Attribute Backend Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_varchar` -- LOCK TABLES `catalog_product_entity_varchar` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_frontend_action` -- DROP TABLE IF EXISTS `catalog_product_frontend_action`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_frontend_action` ( `action_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Action ID', `type_id` varchar(64) NOT NULL COMMENT 'Type of product action', `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `added_at` bigint NOT NULL COMMENT 'Added At', PRIMARY KEY (`action_id`), UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_VISITOR_ID_PRODUCT_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`), UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_CUSTOMER_ID_PRODUCT_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`), KEY `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`), CONSTRAINT `CAT_PRD_FRONTEND_ACTION_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Frontend Action Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_frontend_action` -- LOCK TABLES `catalog_product_frontend_action` WRITE; /*!40000 ALTER TABLE `catalog_product_frontend_action` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_frontend_action` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav` -- DROP TABLE IF EXISTS `catalog_product_index_eav`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` int unsigned NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav` -- LOCK TABLES `catalog_product_index_eav` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_decimal` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_decimal` -- LOCK TABLES `catalog_product_index_eav_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal_idx` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_decimal_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Indexer Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_decimal_idx` -- LOCK TABLES `catalog_product_index_eav_decimal_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal_replica` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_decimal_replica` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_decimal_replica` -- LOCK TABLES `catalog_product_index_eav_decimal_replica` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_decimal_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Decimal Indexer Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_decimal_tmp` -- LOCK TABLES `catalog_product_index_eav_decimal_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_idx` -- DROP TABLE IF EXISTS `catalog_product_index_eav_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` int unsigned NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Indexer Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_idx` -- LOCK TABLES `catalog_product_index_eav_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_replica` -- DROP TABLE IF EXISTS `catalog_product_index_eav_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_replica` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` int unsigned NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_replica` -- LOCK TABLES `catalog_product_index_eav_replica` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_eav_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_eav_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` int unsigned NOT NULL COMMENT 'Value', `source_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Original entity ID for attribute value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`), KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product EAV Indexer Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_eav_tmp` -- LOCK TABLES `catalog_product_index_eav_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price` -- DROP TABLE IF EXISTS `catalog_product_index_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`), KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price` -- LOCK TABLES `catalog_product_index_price` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price_type` smallint unsigned NOT NULL COMMENT 'Price Type', `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price', `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent', `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Idx'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_idx` -- LOCK TABLES `catalog_product_index_price_bundle_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_opt_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Opt Idx'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_opt_idx` -- LOCK TABLES `catalog_product_index_price_bundle_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_opt_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `alt_tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Opt Tmp'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_opt_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_sel_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_sel_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `selection_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Selection ID', `group_type` smallint unsigned DEFAULT '0' COMMENT 'Group Type', `is_required` smallint unsigned DEFAULT '0' COMMENT 'Is Required', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Sel Idx'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_sel_idx` -- LOCK TABLES `catalog_product_index_price_bundle_sel_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_sel_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_sel_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `selection_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Selection ID', `group_type` smallint unsigned DEFAULT '0' COMMENT 'Group Type', `is_required` smallint unsigned DEFAULT '0' COMMENT 'Is Required', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Sel Tmp'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_sel_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_sel_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_bundle_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price_type` smallint unsigned NOT NULL COMMENT 'Price Type', `special_price` decimal(20,6) DEFAULT NULL COMMENT 'Special Price', `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent', `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Index Price Bundle Tmp'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_bundle_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_agr_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_cfg_opt_agr_idx` ( `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `child_id` int unsigned NOT NULL COMMENT 'Child ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_agr_idx` -- LOCK TABLES `catalog_product_index_price_cfg_opt_agr_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_agr_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ( `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `child_id` int unsigned NOT NULL COMMENT 'Child ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_agr_tmp` -- LOCK TABLES `catalog_product_index_price_cfg_opt_agr_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_cfg_opt_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_idx` -- LOCK TABLES `catalog_product_index_price_cfg_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_cfg_opt_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Config Option Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_tmp` -- LOCK TABLES `catalog_product_index_price_cfg_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_downlod_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_downlod_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_downlod_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price', `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Indexer Table for price of downloadable products'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_downlod_idx` -- LOCK TABLES `catalog_product_index_price_downlod_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_downlod_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_downlod_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_downlod_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int NOT NULL, `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Minimum price', `max_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Maximum price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Temporary Indexer Table for price of downloadable products'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_downlod_tmp` -- LOCK TABLES `catalog_product_index_price_downlod_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_final_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_final_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_final_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Final Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_final_idx` -- LOCK TABLES `catalog_product_index_price_final_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_final_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_final_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_final_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_final_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_final_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Original Price', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `base_tier` decimal(20,6) DEFAULT NULL COMMENT 'Base Tier', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Final Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_final_tmp` -- LOCK TABLES `catalog_product_index_price_final_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_idx` -- LOCK TABLES `catalog_product_index_price_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_agr_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_opt_agr_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_opt_agr_idx` -- LOCK TABLES `catalog_product_index_price_opt_agr_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_agr_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_opt_agr_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_opt_agr_tmp` -- LOCK TABLES `catalog_product_index_price_opt_agr_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_opt_idx` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_opt_idx` -- LOCK TABLES `catalog_product_index_price_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_opt_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Option Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_opt_tmp` -- LOCK TABLES `catalog_product_index_price_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_replica` -- DROP TABLE IF EXISTS `catalog_product_index_price_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_replica` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`), KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_replica` -- LOCK TABLES `catalog_product_index_price_replica` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_price_tmp` ( `entity_id` int unsigned NOT NULL COMMENT 'Product ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint unsigned DEFAULT '0' COMMENT 'Tax Class ID', `price` decimal(20,6) DEFAULT NULL COMMENT 'Price', `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price', `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price', `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Price Indexer Temp Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_price_tmp` -- LOCK TABLES `catalog_product_index_price_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_tier_price` -- DROP TABLE IF EXISTS `catalog_product_index_tier_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_tier_price` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`), CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Tier Price Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_tier_price` -- LOCK TABLES `catalog_product_index_tier_price` WRITE; /*!40000 ALTER TABLE `catalog_product_index_tier_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_tier_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_website` -- DROP TABLE IF EXISTS `catalog_product_index_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_index_website` ( `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `default_store_id` smallint unsigned NOT NULL COMMENT 'Default store ID for website', `website_date` date DEFAULT NULL COMMENT 'Website Date', `rate` float DEFAULT '1' COMMENT 'Rate', PRIMARY KEY (`website_id`), KEY `CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`), CONSTRAINT `CAT_PRD_IDX_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Website Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_index_website` -- LOCK TABLES `catalog_product_index_website` WRITE; /*!40000 ALTER TABLE `catalog_product_index_website` DISABLE KEYS */; INSERT INTO `catalog_product_index_website` VALUES (1,1,'2024-03-14',1); /*!40000 ALTER TABLE `catalog_product_index_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link` -- DROP TABLE IF EXISTS `catalog_product_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link` ( `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `linked_product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Linked Product ID', `link_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID', PRIMARY KEY (`link_id`), UNIQUE KEY `CATALOG_PRODUCT_LINK_LINK_TYPE_ID_PRODUCT_ID_LINKED_PRODUCT_ID` (`link_type_id`,`product_id`,`linked_product_id`), KEY `CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`), KEY `CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`), CONSTRAINT `CAT_PRD_LNK_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_LNK_LNKED_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Product Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link` -- LOCK TABLES `catalog_product_link` WRITE; /*!40000 ALTER TABLE `catalog_product_link` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute` -- DROP TABLE IF EXISTS `catalog_product_link_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link_attribute` ( `product_link_attribute_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Link Attribute ID', `link_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Link Type ID', `product_link_attribute_code` varchar(32) DEFAULT NULL COMMENT 'Product Link Attribute Code', `data_type` varchar(32) DEFAULT NULL COMMENT 'Data Type', PRIMARY KEY (`product_link_attribute_id`), KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`), CONSTRAINT `CAT_PRD_LNK_ATTR_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link_attribute` -- LOCK TABLES `catalog_product_link_attribute` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute` DISABLE KEYS */; INSERT INTO `catalog_product_link_attribute` VALUES (1,1,'position','int'),(2,4,'position','int'),(3,5,'position','int'),(4,3,'position','int'),(5,3,'qty','decimal'); /*!40000 ALTER TABLE `catalog_product_link_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_decimal` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link_attribute_decimal` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `product_link_attribute_id` smallint unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID', `link_id` int unsigned NOT NULL COMMENT 'Link ID', `value` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`), CONSTRAINT `CAT_PRD_LNK_ATTR_DEC_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE, CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Decimal Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link_attribute_decimal` -- LOCK TABLES `catalog_product_link_attribute_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_int` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link_attribute_int` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `product_link_attribute_id` smallint unsigned DEFAULT NULL COMMENT 'Product Link Attribute ID', `link_id` int unsigned NOT NULL COMMENT 'Link ID', `value` int NOT NULL DEFAULT '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`), CONSTRAINT `CAT_PRD_LNK_ATTR_INT_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE, CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Integer Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link_attribute_int` -- LOCK TABLES `catalog_product_link_attribute_int` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_int` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link_attribute_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_varchar` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link_attribute_varchar` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `product_link_attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product Link Attribute ID', `link_id` int unsigned NOT NULL COMMENT 'Link ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`), CONSTRAINT `CAT_PRD_LNK_ATTR_VCHR_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE, CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Varchar Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link_attribute_varchar` -- LOCK TABLES `catalog_product_link_attribute_varchar` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_type` -- DROP TABLE IF EXISTS `catalog_product_link_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_link_type` ( `link_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link Type ID', `code` varchar(32) DEFAULT NULL COMMENT 'Code', PRIMARY KEY (`link_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Link Type Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_link_type` -- LOCK TABLES `catalog_product_link_type` WRITE; /*!40000 ALTER TABLE `catalog_product_link_type` DISABLE KEYS */; INSERT INTO `catalog_product_link_type` VALUES (1,'relation'),(3,'super'),(4,'up_sell'),(5,'cross_sell'); /*!40000 ALTER TABLE `catalog_product_link_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option` -- DROP TABLE IF EXISTS `catalog_product_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `type` varchar(50) DEFAULT NULL COMMENT 'Type', `is_require` smallint NOT NULL DEFAULT '1' COMMENT 'Is Required', `sku` varchar(64) DEFAULT NULL COMMENT 'SKU', `max_characters` int unsigned DEFAULT NULL COMMENT 'Max Characters', `file_extension` varchar(50) DEFAULT NULL COMMENT 'File Extension', `image_size_x` smallint unsigned DEFAULT NULL COMMENT 'Image Size X', `image_size_y` smallint unsigned DEFAULT NULL COMMENT 'Image Size Y', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`option_id`), KEY `CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`), CONSTRAINT `CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option` -- LOCK TABLES `catalog_product_option` WRITE; /*!40000 ALTER TABLE `catalog_product_option` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_price` -- DROP TABLE IF EXISTS `catalog_product_option_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option_price` ( `option_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Price ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price', `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type', PRIMARY KEY (`option_price_id`), UNIQUE KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`), KEY `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Price Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option_price` -- LOCK TABLES `catalog_product_option_price` WRITE; /*!40000 ALTER TABLE `catalog_product_option_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_title` -- DROP TABLE IF EXISTS `catalog_product_option_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option_title` ( `option_title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Title ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `title` varchar(255) DEFAULT NULL COMMENT 'Title', PRIMARY KEY (`option_title_id`), UNIQUE KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`), KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`), CONSTRAINT `CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Title Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option_title` -- LOCK TABLES `catalog_product_option_title` WRITE; /*!40000 ALTER TABLE `catalog_product_option_title` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_price` -- DROP TABLE IF EXISTS `catalog_product_option_type_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option_type_price` ( `option_type_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Price ID', `option_type_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price', `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type', PRIMARY KEY (`option_type_price_id`), UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`), KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`), CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Price Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option_type_price` -- LOCK TABLES `catalog_product_option_type_price` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_type_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_title` -- DROP TABLE IF EXISTS `catalog_product_option_type_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option_type_title` ( `option_type_title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type Title ID', `option_type_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option Type ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `title` varchar(255) DEFAULT NULL COMMENT 'Title', PRIMARY KEY (`option_type_title_id`), UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`), KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`), CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Title Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option_type_title` -- LOCK TABLES `catalog_product_option_type_title` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_title` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_type_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_value` -- DROP TABLE IF EXISTS `catalog_product_option_type_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_option_type_value` ( `option_type_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option Type ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `sku` varchar(64) DEFAULT NULL COMMENT 'SKU', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`option_type_id`), KEY `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`), CONSTRAINT `CAT_PRD_OPT_TYPE_VAL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Option Type Value Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_option_type_value` -- LOCK TABLES `catalog_product_option_type_value` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_value` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_relation` -- DROP TABLE IF EXISTS `catalog_product_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_relation` ( `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `child_id` int unsigned NOT NULL COMMENT 'Child ID', PRIMARY KEY (`parent_id`,`child_id`), KEY `CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`), CONSTRAINT `CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Relation Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_relation` -- LOCK TABLES `catalog_product_relation` WRITE; /*!40000 ALTER TABLE `catalog_product_relation` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_attribute` -- DROP TABLE IF EXISTS `catalog_product_super_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_super_attribute` ( `product_super_attribute_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Super Attribute ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Position', PRIMARY KEY (`product_super_attribute_id`), UNIQUE KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`), CONSTRAINT `CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Attribute Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_super_attribute` -- LOCK TABLES `catalog_product_super_attribute` WRITE; /*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_attribute_label` -- DROP TABLE IF EXISTS `catalog_product_super_attribute_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_super_attribute_label` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `product_super_attribute_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product Super Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `use_default` smallint unsigned DEFAULT '0' COMMENT 'Use Default Value', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`), KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`), CONSTRAINT `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Attribute Label Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_super_attribute_label` -- LOCK TABLES `catalog_product_super_attribute_label` WRITE; /*!40000 ALTER TABLE `catalog_product_super_attribute_label` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_attribute_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_link` -- DROP TABLE IF EXISTS `catalog_product_super_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_super_link` ( `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent ID', PRIMARY KEY (`link_id`), UNIQUE KEY `CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`), KEY `CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`), CONSTRAINT `CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product Super Link Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_super_link` -- LOCK TABLES `catalog_product_super_link` WRITE; /*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_website` -- DROP TABLE IF EXISTS `catalog_product_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_product_website` ( `product_id` int unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`product_id`,`website_id`), KEY `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`), CONSTRAINT `CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Product To Website Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_website` -- LOCK TABLES `catalog_product_website` WRITE; /*!40000 ALTER TABLE `catalog_product_website` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_url_rewrite_product_category` -- DROP TABLE IF EXISTS `catalog_url_rewrite_product_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalog_url_rewrite_product_category` ( `url_rewrite_id` int unsigned NOT NULL COMMENT 'url_rewrite_id', `category_id` int unsigned NOT NULL COMMENT 'category_id', `product_id` int unsigned NOT NULL COMMENT 'product_id', PRIMARY KEY (`url_rewrite_id`), KEY `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`), KEY `CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`), CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `FK_BB79E64705D7F17FE181F23144528FC8` FOREIGN KEY (`url_rewrite_id`) REFERENCES `url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='url_rewrite_relation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_url_rewrite_product_category` -- LOCK TABLES `catalog_url_rewrite_product_category` WRITE; /*!40000 ALTER TABLE `catalog_url_rewrite_product_category` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_url_rewrite_product_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock` -- DROP TABLE IF EXISTS `cataloginventory_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock` ( `stock_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Stock ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name', PRIMARY KEY (`stock_id`), KEY `CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock` -- LOCK TABLES `cataloginventory_stock` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock` DISABLE KEYS */; INSERT INTO `cataloginventory_stock` VALUES (1,0,'Default'); /*!40000 ALTER TABLE `cataloginventory_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_item` -- DROP TABLE IF EXISTS `cataloginventory_stock_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock_item` ( `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `stock_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Stock ID', `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty', `min_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Min Qty', `use_config_min_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Qty', `is_qty_decimal` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Qty Decimal', `backorders` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Backorders', `use_config_backorders` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Backorders', `min_sale_qty` decimal(12,4) NOT NULL DEFAULT '1.0000' COMMENT 'Min Sale Qty', `use_config_min_sale_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Min Sale Qty', `max_sale_qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Max Sale Qty', `use_config_max_sale_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Max Sale Qty', `is_in_stock` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is In Stock', `low_stock_date` timestamp NULL DEFAULT NULL COMMENT 'Low Stock Date', `notify_stock_qty` decimal(12,4) DEFAULT NULL COMMENT 'Notify Stock Qty', `use_config_notify_stock_qty` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Notify Stock Qty', `manage_stock` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Manage Stock', `use_config_manage_stock` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Manage Stock', `stock_status_changed_auto` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Stock Status Changed Automatically', `use_config_qty_increments` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Qty Increments', `qty_increments` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Increments', `use_config_enable_qty_inc` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Use Config Enable Qty Increments', `enable_qty_increments` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Enable Qty Increments', `is_decimal_divided` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Divided into Multiple Boxes for Shipping', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', PRIMARY KEY (`item_id`), UNIQUE KEY `CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`), KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`), KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID_PRODUCT_ID` (`website_id`,`product_id`), KEY `CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`), CONSTRAINT `CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock_item` -- LOCK TABLES `cataloginventory_stock_item` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_item` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status` -- DROP TABLE IF EXISTS `cataloginventory_stock_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock_status` ( `product_id` int unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock_status` -- LOCK TABLES `cataloginventory_stock_status` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status_idx` -- DROP TABLE IF EXISTS `cataloginventory_stock_status_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock_status_idx` ( `product_id` int unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status Indexer Idx'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock_status_idx` -- LOCK TABLES `cataloginventory_stock_status_idx` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status_replica` -- DROP TABLE IF EXISTS `cataloginventory_stock_status_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock_status_replica` ( `product_id` int unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock_status_replica` -- LOCK TABLES `cataloginventory_stock_status_replica` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_status_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status_tmp` -- DROP TABLE IF EXISTS `cataloginventory_stock_status_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cataloginventory_stock_status_tmp` ( `product_id` int unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `stock_id` smallint unsigned NOT NULL COMMENT 'Stock ID', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `stock_status` smallint unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`), KEY `CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Cataloginventory Stock Status Indexer Tmp'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cataloginventory_stock_status_tmp` -- LOCK TABLES `cataloginventory_stock_status_tmp` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule` -- DROP TABLE IF EXISTS `catalogrule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule` ( `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `description` text COMMENT 'Description', `from_date` date DEFAULT NULL COMMENT 'From', `to_date` date DEFAULT NULL COMMENT 'To', `is_active` smallint NOT NULL DEFAULT '0' COMMENT 'Is Active', `conditions_serialized` mediumtext COMMENT 'Conditions Serialized', `actions_serialized` mediumtext COMMENT 'Actions Serialized', `stop_rules_processing` smallint NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action', `discount_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Discount Amount', PRIMARY KEY (`rule_id`), KEY `CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule` -- LOCK TABLES `catalogrule` WRITE; /*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_customer_group` -- DROP TABLE IF EXISTS `catalogrule_customer_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_customer_group` ( `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', PRIMARY KEY (`rule_id`,`customer_group_id`), KEY `CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`), CONSTRAINT `CATALOGRULE_CUSTOMER_GROUP_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `CATRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Rules To Customer Groups Relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_customer_group` -- LOCK TABLES `catalogrule_customer_group` WRITE; /*!40000 ALTER TABLE `catalogrule_customer_group` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_group_website` -- DROP TABLE IF EXISTS `catalogrule_group_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_group_website` ( `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`), KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Group Website'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_group_website` -- LOCK TABLES `catalogrule_group_website` WRITE; /*!40000 ALTER TABLE `catalogrule_group_website` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_group_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_group_website_replica` -- DROP TABLE IF EXISTS `catalogrule_group_website_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_group_website_replica` ( `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID', `customer_group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`), KEY `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Group Website'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_group_website_replica` -- LOCK TABLES `catalogrule_group_website_replica` WRITE; /*!40000 ALTER TABLE `catalogrule_group_website_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_group_website_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product` -- DROP TABLE IF EXISTS `catalogrule_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_product` ( `rule_product_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID', `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID', `from_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'From Time', `to_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'To time', `customer_group_id` int DEFAULT NULL, `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator', `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount', `action_stop` smallint NOT NULL DEFAULT '0' COMMENT 'Action Stop', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`rule_product_id`), UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`), KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`), KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`), KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`), KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_product` -- LOCK TABLES `catalogrule_product` WRITE; /*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product_price` -- DROP TABLE IF EXISTS `catalogrule_product_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_product_price` ( `rule_product_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId', `rule_date` date NOT NULL COMMENT 'Rule Date', `customer_group_id` int DEFAULT NULL, `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate', `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate', PRIMARY KEY (`rule_product_price_id`), UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`), KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`), KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product Price'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_product_price` -- LOCK TABLES `catalogrule_product_price` WRITE; /*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product_price_replica` -- DROP TABLE IF EXISTS `catalogrule_product_price_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_product_price_replica` ( `rule_product_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product PriceId', `rule_date` date NOT NULL COMMENT 'Rule Date', `customer_group_id` int DEFAULT NULL, `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `rule_price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Rule Price', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `latest_start_date` date DEFAULT NULL COMMENT 'Latest StartDate', `earliest_end_date` date DEFAULT NULL COMMENT 'Earliest EndDate', PRIMARY KEY (`rule_product_price_id`), UNIQUE KEY `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`), KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`), KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product Price'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_product_price_replica` -- LOCK TABLES `catalogrule_product_price_replica` WRITE; /*!40000 ALTER TABLE `catalogrule_product_price_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product_price_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product_replica` -- DROP TABLE IF EXISTS `catalogrule_product_replica`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_product_replica` ( `rule_product_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Product ID', `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID', `from_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'From Time', `to_time` int unsigned NOT NULL DEFAULT '0' COMMENT 'To time', `customer_group_id` int DEFAULT NULL, `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `action_operator` varchar(10) DEFAULT 'to_fixed' COMMENT 'Action Operator', `action_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Action Amount', `action_stop` smallint NOT NULL DEFAULT '0' COMMENT 'Action Stop', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`rule_product_id`), UNIQUE KEY `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`), KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`), KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`), KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`), KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CatalogRule Product'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_product_replica` -- LOCK TABLES `catalogrule_product_replica` WRITE; /*!40000 ALTER TABLE `catalogrule_product_replica` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product_replica` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_website` -- DROP TABLE IF EXISTS `catalogrule_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogrule_website` ( `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`rule_id`,`website_id`), KEY `CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`), CONSTRAINT `CATALOGRULE_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Catalog Rules To Websites Relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogrule_website` -- LOCK TABLES `catalogrule_website` WRITE; /*!40000 ALTER TABLE `catalogrule_website` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_recommendations` -- DROP TABLE IF EXISTS `catalogsearch_recommendations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `catalogsearch_recommendations` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `query_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Query ID', `relation_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Relation ID', PRIMARY KEY (`id`), KEY `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` (`query_id`), KEY `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` (`relation_id`), CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE, CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`relation_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Advanced Search Recommendations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalogsearch_recommendations` -- LOCK TABLES `catalogsearch_recommendations` WRITE; /*!40000 ALTER TABLE `catalogsearch_recommendations` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogsearch_recommendations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `checkout_agreement` -- DROP TABLE IF EXISTS `checkout_agreement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `checkout_agreement` ( `agreement_id` int 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 NOT NULL DEFAULT '0' COMMENT 'Is Active', `is_html` smallint NOT NULL DEFAULT '0' COMMENT 'Is Html', `mode` smallint NOT NULL DEFAULT '0' COMMENT 'Applied mode', PRIMARY KEY (`agreement_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Checkout Agreement'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `checkout_agreement` -- LOCK TABLES `checkout_agreement` WRITE; /*!40000 ALTER TABLE `checkout_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `checkout_agreement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `checkout_agreement_store` -- DROP TABLE IF EXISTS `checkout_agreement_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `checkout_agreement_store` ( `agreement_id` int unsigned NOT NULL COMMENT 'Agreement ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`agreement_id`,`store_id`), KEY `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` (`store_id`), CONSTRAINT `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Checkout Agreement Store'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `checkout_agreement_store` -- LOCK TABLES `checkout_agreement_store` WRITE; /*!40000 ALTER TABLE `checkout_agreement_store` DISABLE KEYS */; /*!40000 ALTER TABLE `checkout_agreement_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_block` -- DROP TABLE IF EXISTS `cms_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_block` ( `block_id` smallint 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 NOT NULL DEFAULT '1' COMMENT 'Is Block Active', PRIMARY KEY (`block_id`), KEY `CMS_BLOCK_IDENTIFIER` (`identifier`), FULLTEXT KEY `CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COMMENT='CMS Block Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_block` -- LOCK TABLES `cms_block` WRITE; /*!40000 ALTER TABLE `cms_block` DISABLE KEYS */; INSERT INTO `cms_block` VALUES (1,'footer','footerES','<style>#html-body [data-pb-style=FNIF0RE]{background-color:#1a1f3b;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=MV65X05]{display:flex;width:100%}#html-body [data-pb-style=OAJ3XJY]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;padding-top:25px;padding-bottom:25px;align-self:stretch}#html-body [data-pb-style=HRVFCE6]{text-align:center;padding-left:50px;padding-right:50px;border-style:none}#html-body [data-pb-style=SX1NY4H],#html-body [data-pb-style=VE29OD6]{max-width:100%;height:auto}#html-body [data-pb-style=WMP2T7B]{margin-bottom:0}#html-body [data-pb-style=BUTMDKK]{text-align:center;display:flex;flex-direction:column}#html-body [data-pb-style=ETKXQCK]{display:inline-block}#html-body [data-pb-style=T8Q6RIS]{text-align:center}#html-body [data-pb-style=KPPXME3]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;display:none;align-self:stretch}#html-body [data-pb-style=XCCUN3O]{display:flex;width:100%}#html-body [data-pb-style=MK2PCVY],#html-body [data-pb-style=R00OY7D]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=MK2PCVY]{width:16.6667%}#html-body [data-pb-style=O8AOWS3]{padding:10px 30px;border-style:none}#html-body [data-pb-style=GOLIDX5],#html-body [data-pb-style=J729XPX]{max-width:100%;height:auto}#html-body [data-pb-style=K3NUFXB]{width:25%;padding:40px 20px 20px}#html-body [data-pb-style=A0N5TUF],#html-body [data-pb-style=K3NUFXB],#html-body [data-pb-style=OOQ25WY]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=OOQ25WY]{width:16.6667%;padding:40px 20px 20px}#html-body [data-pb-style=A0N5TUF]{width:8.33333%}#html-body [data-pb-style=AQS5DN6]{justify-content:flex-start;display:flex;flex-direction:column;width:16.6667%;padding:40px 20px 20px}#html-body [data-pb-style=AQS5DN6],#html-body [data-pb-style=FGLPCH4],#html-body [data-pb-style=SE02SGX]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=FGLPCH4]{justify-content:flex-start;display:flex;flex-direction:column;width:8.33333%}#html-body [data-pb-style=SE02SGX]{background-color:#f2f3f8}#html-body [data-pb-style=A12UKGR]{display:flex;width:100%}#html-body [data-pb-style=Y0TSE1N]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:16.6667%;padding-top:20px;align-self:stretch}#html-body [data-pb-style=RG2Y7AP]{padding:10px 30px;border-style:none}#html-body [data-pb-style=CYLVS6E],#html-body [data-pb-style=VPY0SI0]{max-width:100%;height:auto}#html-body [data-pb-style=OVSHE11]{justify-content:center;width:58.3333%;padding:40px 20px 20px;align-self:stretch}#html-body [data-pb-style=BTC6S7B],#html-body [data-pb-style=OVSHE11],#html-body [data-pb-style=QEJ7IEE],#html-body [data-pb-style=WCSCIC1]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=QEJ7IEE]{justify-content:center;width:16.6667%;padding-left:20px;padding-right:20px;align-self:stretch}#html-body [data-pb-style=BTC6S7B],#html-body [data-pb-style=WCSCIC1]{justify-content:flex-start}#html-body [data-pb-style=WCSCIC1]{width:8.33333%;align-self:stretch}#html-body [data-pb-style=BTC6S7B]{margin-top:20px}@media only screen and (max-width: 768px) { #html-body [data-pb-style=HRVFCE6],#html-body [data-pb-style=O8AOWS3],#html-body [data-pb-style=RG2Y7AP]{border-style:none} }</style><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"FNIF0RE\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"MV65X05\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OAJ3XJY\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"HRVFCE6\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Conector_Magento_SAP_Business_One.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"SX1NY4H\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Conector_Magento_SAP_Business_One.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"VE29OD6\"></figure><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"WMP2T7B\"><h2 id=\"AOXHFJM\" style=\"text-align: center;\"><span style=\"font-size: 28px;\"><strong><span style=\"color: #ffffff;\">Integración Magento - SAP Business One</span></strong></span></h2></div><div data-content-type=\"buttons\" data-appearance=\"stacked\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"BUTMDKK\" class=\"button-home\"><div class=\"button-home\" data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"ETKXQCK\"><a class=\"pagebuilder-button-secondary\" href=\"https://calendly.com/proyectos-nc-desarrollos/solicitud-de-prueba-conector-magento-sap\" target=\"\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"T8Q6RIS\"><span data-element=\"link_text\">Reserva una reunión</span></a></div></div></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"KPPXME3\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"XCCUN3O\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"R00OY7D\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MK2PCVY\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"O8AOWS3\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"J729XPX\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"GOLIDX5\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"K3NUFXB\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"C8TYMN5\"><strong><span style=\"font-size: 18px;\">Productos</span></strong></p>\r\n<ul style=\"list-style-type: circle;\">\r\n<li>Magento 2 SAP Integration</li>\r\n</ul></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OOQ25WY\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><strong><span style=\"font-size: 18px;\">Legal</span></strong></p>\r\n<ul style=\"list-style-type: circle;\">\r\n<li><a href=\"https://ncdesarrollos.com/aviso-legal\">Aviso legal</a></li>\r\n<li><a href=\"https://ncdesarrollos.com/politica-de-privacidad\">Política de Privacidad</a></li>\r\n<li><a href=\"https://ncdesarrollos.com/politica-de-cookies\">Política de Cookies</a></li>\r\n</ul></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"A0N5TUF\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"AQS5DN6\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><span style=\"font-size: 18px;\"><strong>Social</strong></span></p></div><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><table>\r\n<tr>\r\n<td><a title=\"NC Desarrollos en Linkedln\" href=\"https://www.linkedin.com/company/nc-desarrollos/\" target=\"_blank\" rel=\"noopener\"><img id=\"AX1BCSX\" style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n<td><a title=\"Piqueras y Crespo en LinkedIn\" href=\"https://www.youtube.com/@RoberNiTe\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales2.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n<td><a title=\"Piqueras y Crespo en Instagram\" href=\"\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales3.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n</tr>\r\n</table></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FGLPCH4\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"SE02SGX\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"A12UKGR\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"Y0TSE1N\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"RG2Y7AP\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"CYLVS6E\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"VPY0SI0\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OVSHE11\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left;\"><span style=\"font-size: 16px;\"><a href=\"https://ncdesarrollos.es/politica-de-privacidad/\">Política de Privacidad</a> </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 16px;\"><a href=\"https://ncdesarrollos.com/aviso-legal\">Aviso legal</a> </span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 16px;\"><a href=\"https://ncdesarrollos.com/politica-de-cookies\">Política de cookies</a></span></p>\r\n<p style=\"text-align: left;\"> </p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 14px;\">© NC Desarrollos – Hagámoslo fácil</span></p>\r\n<p id=\"YSY5G9B\" style=\"text-align: center;\"></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"QEJ7IEE\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><table>\r\n<tr>\r\n<td><a title=\"NC Desarrollos en Linkedln\" href=\"https://www.linkedin.com/company/nc-desarrollos/\" target=\"_blank\" rel=\"noopener\"><img id=\"AX1BCSX\" style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n<td><a title=\"Piqueras y Crespo en LinkedIn\" href=\"https://www.youtube.com/@RoberNiTe\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales2.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n<td><a title=\"Piqueras y Crespo en Instagram\" href=\"\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Redes_sociales3.png\" alt=\"\" width=\"267\" height=\"267\"></a></td>\r\n</tr>\r\n</table></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WCSCIC1\"></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"BTC6S7B\"></div></div>','2024-02-06 13:13:06','2024-03-06 07:33:22',1),(2,'Social','social','<style>#html-body [data-pb-style=UJJYVHV]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;text-align:left;padding-left:20px;padding-right:20px;align-self:stretch}#html-body [data-pb-style=UO8K6OO]{display:flex;width:100%}#html-body [data-pb-style=P7PO70T]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;padding-left:20px;padding-right:20px;align-self:stretch}#html-body [data-pb-style=QD7COAP]{border-style:none}#html-body [data-pb-style=JEM0LVE],#html-body [data-pb-style=L81W6RH]{max-width:100%;height:auto}#html-body [data-pb-style=EJRD4FC]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;padding-left:20px;padding-right:20px;align-self:stretch}#html-body [data-pb-style=MLWVJEL]{border-style:none}#html-body [data-pb-style=HM829OC],#html-body [data-pb-style=ONY7586]{max-width:100%;height:auto}#html-body [data-pb-style=NQGWW0J]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;padding-left:20px;padding-right:20px;align-self:stretch}#html-body [data-pb-style=A9VUNQB]{border-style:none}#html-body [data-pb-style=NI7CY7T],#html-body [data-pb-style=YJEQKRQ]{max-width:100%;height:auto}@media only screen and (max-width: 768px) { #html-body [data-pb-style=A9VUNQB],#html-body [data-pb-style=MLWVJEL],#html-body [data-pb-style=QD7COAP]{border-style:none} }</style><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"UJJYVHV\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"UO8K6OO\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"P7PO70T\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"QD7COAP\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"JEM0LVE\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"L81W6RH\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"EJRD4FC\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"MLWVJEL\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"ONY7586\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"HM829OC\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"NQGWW0J\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"A9VUNQB\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"NI7CY7T\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Redes_sociales3.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"YJEQKRQ\"></figure></div></div></div>','2024-02-07 08:44:57','2024-02-07 08:52:35',1),(3,'Conector bidireccional SAP Business One - Magento 2','Funcionalidades conector','<style>#html-body [data-pb-style=FKEBOC3]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#1a1f3b;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=PU3JWF3]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=CKTXGLO]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=TYHNP83]{display:flex;width:100%}#html-body [data-pb-style=F69866Y],#html-body [data-pb-style=XMW7PAU]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=XMW7PAU]{justify-content:center;width:41.6667%;padding:20px 30px 20px 20px}#html-body [data-pb-style=S7ADYPY]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=LC5OR67]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;padding:20px;align-self:stretch}#html-body [data-pb-style=EE16LDJ]{text-align:center;display:flex;margin-top:20px;flex-direction:column}#html-body [data-pb-style=M9WG9DC]{display:inline-block}#html-body [data-pb-style=WUYJ3IF]{text-align:center}#html-body [data-pb-style=SQ2CKYS],#html-body [data-pb-style=TGWVHIP]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=SQ2CKYS]{background-size:cover;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=TGWVHIP]{background-size:contain}#html-body [data-pb-style=HGF0ML9]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=XJTA0R9]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=C475TJF]{display:flex;width:100%}#html-body [data-pb-style=BKR2FKM],#html-body [data-pb-style=LNN3B08]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=LNN3B08]{width:83.3333%}#html-body [data-pb-style=NVBY834]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=CX2V3MS],#html-body [data-pb-style=JK5JKQ7]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=CX2V3MS]{justify-content:flex-start;display:flex;flex-direction:column;width:8.33333%}#html-body [data-pb-style=JK5JKQ7]{background-color:#1a1f3b}#html-body [data-pb-style=OVR7PT9]{display:flex;width:100%}#html-body [data-pb-style=BH94SOJ],#html-body [data-pb-style=PP2QX33]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=BH94SOJ]{width:83.3333%}#html-body [data-pb-style=ODBT4EF]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=IO2YTQB],#html-body [data-pb-style=JDN2F37]{background-position:left top;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=IO2YTQB]{justify-content:flex-start;display:flex;flex-direction:column;background-size:cover;width:8.33333%}#html-body [data-pb-style=JDN2F37]{background-size:auto}#html-body [data-pb-style=JB9TX2X]{display:flex;width:100%}#html-body [data-pb-style=V2FGSDX],#html-body [data-pb-style=WUERI9F],#html-body [data-pb-style=X0VGYA4]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=V2FGSDX],#html-body [data-pb-style=WUERI9F]{width:33.3333%}#html-body [data-pb-style=WUERI9F]{width:50%}#html-body [data-pb-style=COIUOIM]{margin-top:40px;margin-bottom:20px}#html-body [data-pb-style=JPUHUV2]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=FLY6XX8]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=AOCQ0O1],#html-body [data-pb-style=V8OONV7]{background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=V8OONV7]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:8.33333%}#html-body [data-pb-style=AOCQ0O1]{background-position:right bottom;background-size:auto}#html-body [data-pb-style=ORBTO1I]{display:flex;width:100%}#html-body [data-pb-style=GG3FFTB],#html-body [data-pb-style=TIY11WI]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=TIY11WI]{width:50%}#html-body [data-pb-style=H9L80MO]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=SMIY4RU]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=CG64K90]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=FRU0HXR]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:33.3333%}#html-body [data-pb-style=FLUDHRS],#html-body [data-pb-style=FRU0HXR],#html-body [data-pb-style=H3ISMYE]{background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=FLUDHRS]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:8.33333%}#html-body [data-pb-style=H3ISMYE]{background-position:left bottom;background-size:auto}#html-body [data-pb-style=OQQXB0U]{display:flex;width:100%}#html-body [data-pb-style=AWV52T0],#html-body [data-pb-style=FM1AT8D],#html-body [data-pb-style=YNWQ7TK]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=FM1AT8D],#html-body [data-pb-style=YNWQ7TK]{width:33.3333%}#html-body [data-pb-style=YNWQ7TK]{width:50%}#html-body [data-pb-style=BPJUJB0]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=D48PVSN]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=GSKR80L]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=C6L9A5S],#html-body [data-pb-style=NKTXEP4]{background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=NKTXEP4]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:8.33333%}#html-body [data-pb-style=C6L9A5S]{background-position:right top;background-size:auto}#html-body [data-pb-style=KOPK077]{display:flex;width:100%}#html-body [data-pb-style=PKUUEYT],#html-body [data-pb-style=WUQ2RID]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=PKUUEYT]{width:50%}#html-body [data-pb-style=G29MQQ0]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=U3C9N8B]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=JTJ6H0Q]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=CSMLEQX]{justify-content:flex-start;display:flex;flex-direction:column;background-size:cover;width:33.3333%}#html-body [data-pb-style=CAJBCYR],#html-body [data-pb-style=CSMLEQX],#html-body [data-pb-style=J3CW1PR]{background-position:left top;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=J3CW1PR]{justify-content:flex-start;display:flex;flex-direction:column;background-size:cover;width:8.33333%}#html-body [data-pb-style=CAJBCYR]{background-size:auto}#html-body [data-pb-style=LUIYINY]{display:flex;width:100%}#html-body [data-pb-style=C925T5S],#html-body [data-pb-style=CXPPG2Q],#html-body [data-pb-style=VOY9XJ0]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=CXPPG2Q],#html-body [data-pb-style=VOY9XJ0]{width:33.3333%}#html-body [data-pb-style=VOY9XJ0]{width:50%}#html-body [data-pb-style=IJH3TFT]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=C7XWOHO]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=VYST0LD]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=F3UFOC8],#html-body [data-pb-style=NA7KPDR]{background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=NA7KPDR]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:8.33333%}#html-body [data-pb-style=F3UFOC8]{background-position:right top;background-size:auto}#html-body [data-pb-style=MIUSQUJ]{display:flex;width:100%}#html-body [data-pb-style=OGGJF5P],#html-body [data-pb-style=U804XMP]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=OGGJF5P]{width:50%}#html-body [data-pb-style=JXROU7X]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=JWN5G24]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=AGEAT1S]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=LPLD6H4]{justify-content:flex-start;display:flex;flex-direction:column;background-size:cover;width:33.3333%}#html-body [data-pb-style=F2R40IE],#html-body [data-pb-style=LPLD6H4],#html-body [data-pb-style=QO892XE]{background-position:left top;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=QO892XE]{justify-content:flex-start;display:flex;flex-direction:column;background-size:cover;width:8.33333%}#html-body [data-pb-style=F2R40IE]{background-size:auto}#html-body [data-pb-style=G7S1M0N]{display:flex;width:100%}#html-body [data-pb-style=BL3SKW5],#html-body [data-pb-style=JSVG9UF],#html-body [data-pb-style=MDW7PJU]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=JSVG9UF],#html-body [data-pb-style=MDW7PJU]{width:33.3333%}#html-body [data-pb-style=MDW7PJU]{width:50%}#html-body [data-pb-style=DMXDTKI]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=BOAH2AU]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=C4JY230]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=JVDNN1P],#html-body [data-pb-style=UVBLJ1I]{background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=JVDNN1P]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;width:8.33333%}#html-body [data-pb-style=UVBLJ1I]{background-position:right bottom;background-size:auto}#html-body [data-pb-style=F5TLTYY]{display:flex;width:100%}#html-body [data-pb-style=H5GSISN],#html-body [data-pb-style=IUHWOR2]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=IUHWOR2]{width:50%}#html-body [data-pb-style=P6Q6UXG]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=JVEH9CD]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=U2M4PD9]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=WPTP55C],#html-body [data-pb-style=XUTGM9F]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=XUTGM9F]{width:8.33333%}#html-body [data-pb-style=ESWJIHB]{text-align:center;display:flex;margin-top:20px;flex-direction:column}#html-body [data-pb-style=S8GS5E5]{display:inline-block}#html-body [data-pb-style=MFTND48]{text-align:center}#html-body [data-pb-style=VDSR3PJ]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=F6CX2F0],#html-body [data-pb-style=MJYL4Y4]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=MJYL4Y4]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#1a1f3b}#html-body [data-pb-style=F6CX2F0]{align-self:stretch}#html-body [data-pb-style=EUJB09J]{display:flex;width:100%}#html-body [data-pb-style=DRKNVUO],#html-body [data-pb-style=ED1E4NY]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=DRKNVUO]{width:25%}#html-body [data-pb-style=P9FUN9T]{text-align:center;border-style:none}#html-body [data-pb-style=EJOLU0B],#html-body [data-pb-style=WRDJ9MO]{max-width:100%;height:auto}#html-body [data-pb-style=AMO0FC1]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:58.3333%;padding:20px;align-self:stretch}#html-body [data-pb-style=HECTNQW]{display:inline-block}#html-body [data-pb-style=Q849723]{text-align:center}#html-body [data-pb-style=S65AXU2]{justify-content:center;display:flex;flex-direction:column;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=G9OUQBM],#html-body [data-pb-style=S65AXU2],#html-body [data-pb-style=WF70D4J]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=G9OUQBM]{justify-content:flex-start;display:none;flex-direction:column}#html-body [data-pb-style=WF70D4J]{align-self:stretch}#html-body [data-pb-style=LKYCUPU]{display:flex;width:100%}#html-body [data-pb-style=MY5L0TW],#html-body [data-pb-style=WJLG5YV]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=WJLG5YV]{width:83.3333%}#html-body [data-pb-style=HTJUC6D]{text-align:center}#html-body [data-pb-style=UV6EM09],#html-body [data-pb-style=UVSLNY6]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=BGB1F1P]{display:inline-block}#html-body [data-pb-style=C403NA8]{text-align:center}#html-body [data-pb-style=L2QXWC9]{width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=L2QXWC9],#html-body [data-pb-style=O3OXE3I]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=S7L29VN]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=UABA6CP]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=TFBYBKU]{display:flex;width:100%}#html-body [data-pb-style=LJCRUR5]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=CJBSIRX]{width:100%;border-width:1px;border-color:transparent;display:inline-block}@media only screen and (max-width: 768px) { #html-body [data-pb-style=P9FUN9T]{border-style:none} }</style><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"FKEBOC3\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"PU3JWF3\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"CKTXGLO\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"TYHNP83\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"F69866Y\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XMW7PAU\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h1 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong>Solución de integración SAP Business One - Adobe Ecommerce (Magento 2)</strong></span></h1>\r\n<h2><span style=\"color: #ffffff;\">Integración de datos bidireccional y automatizada entre Magento y SAP</span></h2>\r\n<div class=\"elementor-element elementor-element-2ecc60bc elementor-widget elementor-widget-text-editor\" data-id=\"2ecc60bc\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<p><span style=\"color: #ffffff; font-size: 18px;\">Cambiar de Magento 1 a Magento 2, sin perder la <strong>sincronización entre tu e-commerce y SAP Business One</strong>, es fácil.</span></p>\r\n<p> </p>\r\n<p><span style=\"color: #ffffff; font-size: 20px;\">¿Qué prefieres? </span></p>\r\n<p><span style=\"color: #ffffff; font-size: 18px;\">Pagar por un desarrollo a medida que no te pertenece y del que podrás disfrutar en cuatro a seis meses o un conector que tienes <strong>disponible en 30 días</strong>, en <strong>mejora continua</strong> y por una<strong> cuota fija para siempre</strong>.</span></p>\r\n</div>\r\n</div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"S7ADYPY\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LC5OR67\"><div data-content-type=\"video\" data-appearance=\"default\" data-element=\"main\"><div class=\"pagebuilder-video-inner\" data-element=\"inner\"><div class=\"pagebuilder-video-wrapper\" data-element=\"wrapper\"><div class=\"pagebuilder-video-container\"><iframe frameborder=\"0\" allowfullscreen=\"\" src=\"https://www.youtube.com/embed/VV95xKEO48s\" data-element=\"video\"></iframe></div></div></div></div><div data-content-type=\"buttons\" data-appearance=\"stacked\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"EE16LDJ\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"M9WG9DC\"><a class=\"pagebuilder-button-primary\" href=\"https://calendly.com/proyectos-nc-desarrollos/solicitud-de-prueba-conector-magento-sap\" target=\"_blank\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"WUYJ3IF\"><span data-element=\"link_text\">Reserva una reunión</span></a></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"SQ2CKYS\"></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"TGWVHIP\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"HGF0ML9\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"XJTA0R9\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"C475TJF\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BKR2FKM\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LNN3B08\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 id=\"UWSB76S\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 28px;\"><strong id=\"UR8PXTY\">Funcionalidades del conector Magento - SAP Business One</strong></span></h2>\r\n<h3><span style=\"font-size: 24px;\"><strong>Gestiónalo todo desde SAP Business One.</strong></span></h3>\r\n<p id=\"TT0D9CY\"><span style=\"font-size: 18px;\">Todas las funcionalidades tienen como objetivo conseguir que SAP Business One y Magento 2 trabajen como una única herramienta. </span></p>\r\n<p><span style=\"font-size: 18px;\">El conector permite que cualquier cambio que se haga en una de las dos plataformas quede reflejado de forma automática en la otra.</span></p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"NVBY834\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CX2V3MS\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"JK5JKQ7\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"OVR7PT9\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PP2QX33\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BH94SOJ\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"ODBT4EF\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IO2YTQB\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"JDN2F37\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"JB9TX2X\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"X0VGYA4\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"V2FGSDX\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WUERI9F\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"COIUOIM\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"JPUHUV2\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"FLY6XX8\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span style=\"font-size: 24px;\">Clientes</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Nuestro conector integra bidireccionalmente todos los datos de tus clientes</span></p><p><strong><span style=\"font-size: 18px;\">Direcciones, Tarifa, Precios Especiales, Segmento o Grupo de cliente, etc.</span></strong></p><p></p><p><span style=\"font-size: 18px;\">Si se produce algún <strong>cambio</strong>, bien por parte de tu empresa (ej. Cambio de tarifa) o por parte del cliente (ej. Gestión de direcciones desde su perfil), ese cambio se reflejará casi de manera <strong>instantanea en SAP Business One y Magento</strong>.</span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"V8OONV7\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"AOCQ0O1\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"ORBTO1I\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"GG3FFTB\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"TIY11WI\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"H9L80MO\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"SMIY4RU\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"CG64K90\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"FXSAIXN\" style=\"font-size: 24px;\">Tarifas por grupo de clientes y precios especiales</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">El equipo de ventas de cualquier empresa B2B necesita poder establecer <strong>precios especiales a clientes concretos</strong> y que esos descuentos sean <strong><span style=\"color: #000000;\">visibles en la web de forma ágil</span></strong>. </span></p><p></p><p><span style=\"font-size: 18px;\">Nuestro conector Magento SAP Business One lo permite. </span></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FRU0HXR\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FLUDHRS\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo_2.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"H3ISMYE\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"OQQXB0U\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"AWV52T0\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FM1AT8D\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"YNWQ7TK\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"BPJUJB0\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"D48PVSN\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"GSKR80L\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"PP3XECB\" style=\"font-size: 24px;\">Productos</span></strong></span></h3><p><span style=\"font-size: 18px;\">Una vez activado el conector, los <strong>productos habilitados para la venta</strong> en SAP se traducirán de forma automática en una <strong>ficha de producto completa en tu página web. </strong></span></p><p></p><p><span style=\"font-size: 18px;\">Incluido para todas las vistas de idioma, con sus respectivas traducciones.</span></p><p></p><p><span style=\"font-size: 18px;\">Tu Departamento de Producto quiere ampliar el surtido o realizar alguna modificación, solo tendrá que crear o realizar los cambios en SAP Business One y listo.</span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"NKTXEP4\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"C6L9A5S\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"KOPK077\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WUQ2RID\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PKUUEYT\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"G29MQQ0\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"U3C9N8B\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"JTJ6H0Q\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"LV2744J\" style=\"font-size: 24px;\">Sincronización de categorías</span></strong></span></h3><p><span style=\"font-size: 18px;\">En la arquitectura SEO de tu página web las categorías juegan un papel fundamental.</span></p><p></p><p><span style=\"font-size: 18px;\">El conector de NC Desarrollos lo tiene en cuenta, y te permite reflejar de forma ágil en tu Magento:</span></p><p></p><ul><li><span style=\"font-size: 18px;\">El cambio en la arbolescencia de categorías que realices en SAP Business One. </span></li><li><span style=\"font-size: 18px;\">O cualquier cambio de categoría de un producto.</span></li></ul><p></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CSMLEQX\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J3CW1PR\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo_3.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"CAJBCYR\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"LUIYINY\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"C925T5S\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CXPPG2Q\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"VOY9XJ0\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"IJH3TFT\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"C7XWOHO\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"VYST0LD\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"NMNX09V\" style=\"font-size: 24px;\">Stocks en tiempo real</span></strong></span></h3><p><span style=\"font-size: 18px;\">¿Eres una <strong>empresa multicanal</strong> y vendes tus productos por otras vías?</span></p><p></p><p><span style=\"font-size: 18px;\">En estos casos la gestión del stock disponible es crítica. </span></p><p><span style=\"font-size: 18px;\">No te preocupes, con la integración de Magento con tu ERP, tu ecommerce reflejará el <strong>stock en tiempo real</strong> que tengas informado en SAP Business One.</span></p><p></p><p><span style=\"font-size: 18px;\">Olvídate de actualizar el stock de tu web. </span></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"NA7KPDR\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"F3UFOC8\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"MIUSQUJ\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"U804XMP\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OGGJF5P\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"JXROU7X\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"JWN5G24\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"AGEAT1S\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Q244Q2O\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"HH5EC3V\" style=\"font-size: 24px;\">Gestión automática de pedidos</span></strong></span></h3><p><span style=\"font-size: 18px;\">¿Todavía necesitas que alguien de tu equipo pase la \"consola\"?</span></p><p></p><p><span style=\"font-size: 18px;\">La <strong>integración de datos bidireccional Magento - SAP Business One</strong> permite<strong> añadir el pedido al sistema de forma automática </strong>y actualizar su estado en ambas plataformas en tiempo real.</span></p><p></p><p><span style=\"font-size: 18px;\">Así, si un cliente cancela el pedido, SAP lo sabe al instante y paraliza la tramitación.</span></p><p></p><p><span style=\"font-size: 18px;\">Nuestro conector optimiza procesos y evita desajustes.</span></p><p></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LPLD6H4\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"QO892XE\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"F2R40IE\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"G7S1M0N\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BL3SKW5\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"JSVG9UF\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MDW7PJU\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"DMXDTKI\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"BOAH2AU\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"C4JY230\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"IRLYDH0\" style=\"font-size: 24px;\">Autorizaciones</span></strong></span></h3><p><span style=\"font-size: 18px;\">Automatizar procesos es el objetivo de cualquier empresa.</span></p><p></p><p><span style=\"font-size: 18px;\">Sin embargo, siempre es posible que quieras establecer <strong>controles para situaciones concretas</strong>.</span></p><p><span style=\"font-size: 18px;\">Por ejemplo, que sea necesario la autorización por parte del Departamento Financiero cuando un cliente haya alcanzado su límite de crédito.</span></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"JVDNN1P\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo_3.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"UVBLJ1I\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"F5TLTYY\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"H5GSISN\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IUHWOR2\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"P6Q6UXG\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"JVEH9CD\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"U2M4PD9\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"V8XPDYR\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"TBQTM9Q\" style=\"font-size: 24px;\">Reporte de errores</span></strong></span></h3><p><span style=\"font-size: 18px;\">La integración SAP Business One - Magento 2 te permitirá detectar errores y depurar tu base de datos.</span></p><p></p><p><span style=\"font-size: 18px;\">El conector generará registros tipo log de los últimos 30 días con errores de sincronización. Por ejemplo:</span></p><ul><li><span style=\"font-size: 18px;\">El equipo da de alta de forma manual un cliente en SAP, pero no informa su correo. El sistema generará un error puesto que se necesita un correo para crearle un usuario en Magento 2. </span></li><li><span style=\"font-size: 18px;\">Un cliente ha tramitado un pedido, pero ha informado como dirección de entrega \"-\". El conector detecta el error y envía un aviso tu equipo para que lo revise.</span></li></ul><p></p><p></p><p></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WPTP55C\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XUTGM9F\"></div></div></div><div data-content-type=\"buttons\" data-appearance=\"stacked\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"ESWJIHB\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"S8GS5E5\"><a class=\"pagebuilder-button-primary\" href=\"https://nc.ncdesarrollos.com/conector-bidireccional-sap-business-one-magento-2/mejoras-programadas.html\" target=\"\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"MFTND48\"><span data-element=\"link_text\">Consultar próximas funcionalidades</span></a></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"VDSR3PJ\"></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"MJYL4Y4\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"F6CX2F0\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"EUJB09J\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"ED1E4NY\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"DRKNVUO\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"P9FUN9T\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/NC_Desarrollos_-_Magento_2_SAP_Integration_White.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"WRDJ9MO\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/NC_Desarrollos_-_Magento_2_SAP_Integration_White.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"EJOLU0B\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"AMO0FC1\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2><span style=\"font-size: 28px;\"><strong><span style=\"color: #ffffff;\">NC Desarrollos vs. otros conectores Magento 2 - SAP B1</span></strong></span></h2>\r\n<h3><span style=\"color: #ffffff; font-size: 20px;\">Conector bidireccional prediseñado para Magento y SAP Business One.</span></h3>\r\n<p> </p>\r\n<p><span style=\"color: #ffffff; font-size: 18px;\">NC Desarrollos no hace trajes a medida.</span></p>\r\n<p><span style=\"color: #ffffff; font-size: 18px;\">Pero ponemos a tu diposición un conector bidireccional completo adaptado a tu negocio (B2B Productos, B2B Servicios, B2C Productos o B2B Servicios).</span></p>\r\n<p> </p>\r\n<p><span style=\"font-size: 20px;\"><strong><span style=\"color: #ffffff;\">¿Por qué NC Desarrollos?</span></strong></span></p>\r\n<ul>\r\n<li><span style=\"color: #ffffff; font-size: 18px;\"><strong>Sin inversión inicial</strong>. Una solución que no implica un sobreesfuerzo financiero para comprar un código que no te pertenece.</span></li>\r\n<li><span style=\"color: #ffffff; font-size: 18px;\"><strong>Sincronización Bidireccional</strong>. Podrás encontrar otras soluciones que hacen la carretera en un único sentido.</span></li>\r\n<li><span style=\"color: #ffffff; font-size: 18px;\"><strong>Desarrollos incluidos</strong>. Las mejoras propuestas por los clientes, se valoran, se desarrollan y se activan para todos los clientes. </span></li>\r\n</ul></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HECTNQW\"><a class=\"pagebuilder-button-primary\" href=\"https://calendly.com/proyectos-nc-desarrollos/solicitud-de-prueba-conector-magento-sap\" target=\"\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"Q849723\"><span data-element=\"link_text\">¿Tienes otra propuesta? Contacta con nosotros.</span></a></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"S65AXU2\"></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"G9OUQBM\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"WF70D4J\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"LKYCUPU\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MY5L0TW\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WJLG5YV\"><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HTJUC6D\">Ahorra con la automatización SAP B1 - Magento</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Bajémoslo a tierra.</p>\r\n<p>Cuánto vas a ahorrar con la integración de datos bidireccional y automatizada entre Magento y SAP</p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"UVSLNY6\"></div><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><div class=\"row mb-4 justify-content-center\">\r\n <div class=\"col-12 col-md-4 text-center\">\r\n <div class=\"form-group\">\r\n <label for=\"errors\">\r\n <span class=\"h5 text-white\"><strong>Spending</strong></span>\r\n <span id=\"inputErrors\" class=\"display-4 blue\">1</span>\r\n <span class=\"h5 text-white\"><strong>hours per day</strong></span>\r\n </label>\r\n <input type=\"range\" class=\"custom-range\" min=\"1\" max=\"10\" id=\"errors\" value=\"3\" onchange=\"updateHoursSaved()\">\r\n </div>\r\n <div class=\"bg-white grid-border py-5\">\r\n <div class=\"display-4 blue mb-4\">\r\n <span id=\"timesavedLabel\">365</span>\r\n <span class=\"h4 grey\">Hours</span>\r\n </div>\r\n <div class=\"h5\">\r\n <i class=\"blue fa fa-history mr-2\" aria-hidden=\"true\"></i>\r\n <strong class=\"grey\">Hours saved per year</strong>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-12 col-md-4 text-center\">\r\n <div class=\"form-group\">\r\n <label for=\"estimatedIncome\">\r\n <span class=\"h5 text-white\"><strong>at</strong></span>\r\n <span id=\"inputAverageRate\" class=\"display-4 blue\">15</span>\r\n <span class=\"h5 text-white\"><strong>per hour</strong></span>\r\n </label>\r\n <input type=\"range\" class=\"custom-range\" min=\"8\" max=\"100\" id=\"averageRate\" value=\"15\" onchange=\"updateFinancialSavings()\">\r\n </div>\r\n <div class=\"bg-white grid-border py-5\">\r\n <div class=\"display-4 blue mb-4\">£<span id=\"errorsLabel\">5,475</span></div>\r\n <div class=\"h5\">\r\n <i class=\"blue fa fa-check-square-o mr-2\" aria-hidden=\"true\"></i>\r\n <strong class=\"grey\">Financial savings per year</strong>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"UV6EM09\"></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"BGB1F1P\"><div class=\"pagebuilder-button-primary\" data-element=\"empty_link\" data-pb-style=\"C403NA8\"><span data-element=\"link_text\">Contratar Conector SAP B1 - Magento</span></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"L2QXWC9\"></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"O3OXE3I\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"S7L29VN\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"UABA6CP\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"TFBYBKU\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LJCRUR5\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><!DOCTYPE html>\r\n<html>\r\n\r\n<head>\r\n <style>\r\n /* Estilos para el menu colapsable */\r\n .collapsible {\r\n background-color: #777;\r\n font-weight: bold;\r\n color: white;\r\n cursor: pointer;\r\n padding: 18px;\r\n width: 100%;\r\n border: none;\r\n text-align: left;\r\n outline: none;\r\n font-size: 20px;\r\n }\r\n\r\n .active,\r\n .collapsible:hover {\r\n background-color: #555;\r\n }\r\n\r\n .collapsible:after {\r\n content: \'\\002B\';\r\n color: white;\r\n font-weight: bold;\r\n float: right;\r\n margin-left: 5px;\r\n }\r\n\r\n .active:after {\r\n content: \"\\2212\";\r\n }\r\n /* Estilos para el contenido del menu colapsable */\r\n .NCD-content {\r\n padding: 18px;\r\n display: none;\r\n overflow: hidden;\r\n background-color: #f2f3f8;\r\n font-size: 18px;\r\n }\r\n </style>\r\n</head>\r\n\r\n<body>\r\n\r\n <div class=\"collapsible\">¿Puede Magento integrarse con SAP?</div>\r\n <div class=\"NCD-content\">\r\n <p>Sí, es posible integrar Magento con SAP Business One. Sin embargo, no existe una conexión directa entre ellos. Se requiere un intermediario llamado conector que actúe como intérprete entre ambos sistemas.</p>\r\n <p>El uso de un conector permite que Magento y SAP Business One sincronicen sus datos y trabajen juntos de manera efectiva en proyectos de comercio electrónico y gestión empresarial.</p>\r\n <p></p>\r\n </div>\r\n\r\n<div class=\"collapsible\">¿Qué es el conector SAP Business One - Magento?</div>\r\n <div class=\"NCD-content\">\r\n <p>SAP Business One - Magento es una solución que integra los sistemas SAP Business One y Magento 2 para permitir una comunicación fluida y automatizada entre ambas plataformas, facilitando la gestión de datos, inventario, pedidos, clientes y otros aspectos comerciales entre ambos sistemas.</p> \r\n <p>Existen conectores bidireccionales y unidireccionales para la integración de SAP Business One y Magento. Los conectores bidireccionales permiten la sincronización de datos en ambas direcciones, lo que significa que la información puede fluir tanto de SAP Business One a Magento como de Magento a SAP Business One. Por otro lado, los conectores unidireccionales solo permiten la transferencia de datos en una dirección específica, ya sea de SAP Business One a Magento o viceversa. La elección entre un conector bidireccional o unidireccional depende de los requisitos comerciales y de integración específicos de cada empresa.</p>\r\n </div>\r\n\r\n <div class=\"collapsible\">¿Cómo integrar SAP Business One con Magento 2?</div>\r\n <div class=\"NCD-content\">\r\n<p>La integración de SAP Business One con Magento 2 puede hacerse principalmente de dos formas:</p>\r\n <ol>\r\n <li><strong>Mediante el uso de un conector prediseñado.</strong></li>\r\n <li><strong>A través del desarrollo de una solución a medida.</strong></li>\r\n </ol>\r\n <p>Sin embargo, la opción del conector prediseñado ofrece ventajas significativas. Estos conectores, al ser soluciones listas para usar, eliminan la necesidad de una inversión inicial importante en el desarrollo de código personalizado. Además, su implementación es rápida y sencilla, lo que acelera el proceso de integración y permite a la empresa poner en marcha su sistema integrado en poco tiempo.</p>\r\n <p>Otra ventaja importante del conector prediseñado es que proporciona actualizaciones y mejoras continuas <strong>sin costos adicionales</strong>. Esto garantiza que la integración entre SAP Business One y Magento 2 funcione de manera óptima y esté actualizada con las últimas funcionalidades y correcciones de errores.</p>\r\n\r\n </div>\r\n\r\n <div class=\"collapsible\">¿Cómo funciona la integración bidireccional Magento - SAP Business One?</div>\r\n <div class=\"NCD-content\">\r\n<p>La integración bidireccional entre Magento y SAP Business One permite la sincronización de datos en ambas direcciones, lo que significa que la información puede fluir desde Magento hacia SAP Business One y viceversa. Aquí hay un resumen de cómo funciona este tipo de integración:</p>\r\n <ol>\r\n <li><strong>Sincronización de datos de productos:</strong> Los datos de productos, incluyendo descripciones, precios, inventario y atributos, se pueden sincronizar entre Magento y SAP Business One. Los cambios realizados en uno de los sistemas se reflejan automáticamente en el otro.</li>\r\n <li><strong>Gestión de inventario:</strong> La disponibilidad de inventario se actualiza automáticamente en ambas plataformas en tiempo real. Cuando se realiza una venta en Magento, el inventario se reduce en SAP Business One y viceversa.</li>\r\n <li><strong>Procesamiento de pedidos:</strong> Los pedidos realizados en Magento se transfieren automáticamente a SAP Business One para su procesamiento y cumplimiento. La información del cliente, los productos comprados y otros detalles del pedido se sincronizan entre los dos sistemas.</li>\r\n <li><strong>Gestión de clientes:</strong> Los datos de clientes, como información de contacto, historial de pedidos y detalles de facturación, se pueden sincronizar entre Magento y SAP Business One. Esto garantiza una vista actualizada y coherente de los clientes en ambos sistemas.</li>\r\n <li><strong>Actualización de precios y promociones:</strong> Los cambios en los precios y las promociones pueden ser gestionados desde SAP Business One y actualizados en Magento de manera automática. Esto garantiza que los precios sean coherentes en todas las plataformas de venta.</li>\r\n </ol>\r\n <p>En resumen, la integración bidireccional entre Magento y SAP Business One mejora la eficiencia operativa al eliminar la necesidad de ingresar datos manualmente en múltiples sistemas. Además, garantiza una experiencia de compra consistente para los clientes al mantener actualizada la información de productos, inventario, precios y pedidos en tiempo real.</p>\r\n </div>\r\n\r\n <script>\r\n var coll = document.getElementsByClassName(\"collapsible\");\r\n var i;\r\n\r\n for (i = 0; i < coll.length; i++) {\r\n coll[i].addEventListener(\"click\", function () {\r\n this.classList.toggle(\"active\");\r\n var content = this.nextElementSibling;\r\n if (content.style.display === \"block\") {\r\n content.style.display = \"none\";\r\n } else {\r\n content.style.display = \"block\";\r\n }\r\n });\r\n }\r\n </script>\r\n\r\n</body>\r\n\r\n</html></div></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"CJBSIRX\"></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"6\" type_name=\"CMS Static Block\"}}</div>','2024-02-08 08:30:34','2024-02-12 06:03:09',1),(4,'Precios','Precios','<style>#html-body [data-pb-style=AILGHYD],#html-body [data-pb-style=JOBQSX1],#html-body [data-pb-style=MAE3TL1]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=AILGHYD],#html-body [data-pb-style=MAE3TL1]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=JOBQSX1]{background-color:#1a1f3b;align-self:stretch}#html-body [data-pb-style=YPUX1SD]{background-color:transparent}#html-body [data-pb-style=FBAO1NV],#html-body [data-pb-style=YPUX1SD]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=VO6M3A3]{background-color:#1a1f3b}#html-body [data-pb-style=D4WEYDB],#html-body [data-pb-style=NYN4PD7],#html-body [data-pb-style=VO6M3A3]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=B3WR1N9],#html-body [data-pb-style=ER5FY1L],#html-body [data-pb-style=PP1EY9K],#html-body [data-pb-style=XMQA468]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=Q5BOW34]{margin-bottom:20px}#html-body [data-pb-style=WSONUUY]{text-align:center;display:flex;flex-direction:column}#html-body [data-pb-style=CO87MXA],#html-body [data-pb-style=EVHQWMX],#html-body [data-pb-style=I40FLL4],#html-body [data-pb-style=W0GSJE3],#html-body [data-pb-style=W16URT0],#html-body [data-pb-style=XV71I69]{display:flex;width:100%}#html-body [data-pb-style=R4A0JWB]{display:inline-block}#html-body [data-pb-style=BVEOAKJ]{text-align:center}#html-body [data-pb-style=CMQNLEW]{justify-content:flex-start;width:8.33333%;padding:20px}#html-body [data-pb-style=CMQNLEW],#html-body [data-pb-style=JOC7LRM],#html-body [data-pb-style=OB3XCI0],#html-body [data-pb-style=RKRVNN8],#html-body [data-pb-style=XP6APFX]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=OB3XCI0]{justify-content:center;width:83.3333%;padding:20px}#html-body [data-pb-style=JOC7LRM],#html-body [data-pb-style=RKRVNN8],#html-body [data-pb-style=XP6APFX]{justify-content:flex-start}#html-body [data-pb-style=JOC7LRM]{width:8.33333%;padding:20px}#html-body [data-pb-style=RKRVNN8],#html-body [data-pb-style=XP6APFX]{width:16.6667%}#html-body [data-pb-style=XP6APFX]{justify-content:center;width:66.6667%}#html-body [data-pb-style=BAOFJ2B]{padding-left:20px;padding-right:20px}#html-body [data-pb-style=PJ5API4],#html-body [data-pb-style=VT5U7LN],#html-body [data-pb-style=WMU1OQY]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:16.6667%;align-self:stretch}#html-body [data-pb-style=PJ5API4],#html-body [data-pb-style=WMU1OQY]{width:33.3333%}#html-body [data-pb-style=WMU1OQY]{background-color:#f2f3f8;border-color:#f2f3f8;border-radius:20px;margin:40px;padding:20px 40px 40px;align-self:center}#html-body [data-pb-style=EFUM2OR]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=IT1ETSC]{text-align:center;display:flex;margin-top:30px;flex-direction:column}#html-body [data-pb-style=HHR94J2]{display:inline-block}#html-body [data-pb-style=IP2SR7M]{text-align:center;margin-bottom:20px}#html-body [data-pb-style=PBKHI02]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=UFGI6IF]{justify-content:flex-start;width:8.33333%}#html-body [data-pb-style=F6S2T7V],#html-body [data-pb-style=U0U80Q2],#html-body [data-pb-style=UFGI6IF]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;padding:20px;align-self:stretch}#html-body [data-pb-style=U0U80Q2]{justify-content:center;width:33.3333%}#html-body [data-pb-style=F6S2T7V]{justify-content:flex-start;width:calc(25% - 40px);margin-left:40px}#html-body [data-pb-style=HA9L8G6],#html-body [data-pb-style=RFD04LJ]{margin-bottom:20px}#html-body [data-pb-style=IN0HC4S]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;padding:20px;align-self:stretch}#html-body [data-pb-style=J4YCTL6],#html-body [data-pb-style=P720G4F]{margin-bottom:20px}#html-body [data-pb-style=H3HEP7P],#html-body [data-pb-style=P7SRLWM],#html-body [data-pb-style=VBHTO4F]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;padding:20px;align-self:stretch}#html-body [data-pb-style=H3HEP7P]{justify-content:flex-start;width:8.33333%}#html-body [data-pb-style=P7SRLWM],#html-body [data-pb-style=VBHTO4F]{justify-content:center}#html-body [data-pb-style=P7SRLWM]{width:16.6667%}#html-body [data-pb-style=VBHTO4F]{width:calc(41.6667% - 40px);margin-right:40px}#html-body [data-pb-style=QU6VSFO]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=IU39C9Q],#html-body [data-pb-style=W1V6S76],#html-body [data-pb-style=W4R4JYJ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;padding:20px;align-self:stretch}#html-body [data-pb-style=W1V6S76],#html-body [data-pb-style=W4R4JYJ]{justify-content:center;width:16.6667%}#html-body [data-pb-style=W1V6S76]{justify-content:flex-start;width:100%}#html-body [data-pb-style=NKDX7D9]{text-align:center;border-style:none}#html-body [data-pb-style=JA9WJAQ],#html-body [data-pb-style=MUV07OY]{max-width:100%;height:auto}#html-body [data-pb-style=UC4BDWW]{border-style:none}#html-body [data-pb-style=K3SYS1X],#html-body [data-pb-style=W7T9241]{max-width:100%;height:auto}@media only screen and (max-width: 768px) { #html-body [data-pb-style=NKDX7D9],#html-body [data-pb-style=UC4BDWW]{border-style:none} }</style><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"AILGHYD\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"JOBQSX1\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"EVHQWMX\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CMQNLEW\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"OB3XCI0\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"NKDX7D9\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Conector_Magento_SAP_Business_One.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"JA9WJAQ\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Conector_Magento_SAP_Business_One.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"MUV07OY\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"JOC7LRM\"></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"MAE3TL1\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"PP1EY9K\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"YPUX1SD\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"CO87MXA\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"RKRVNN8\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XP6APFX\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"BAOFJ2B\"><h1 style=\"text-align: center;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #000000; font-size: 48px;\"><strong id=\"KE196NH\">Conecta SAP Business One a tu Magento 2</strong></span></h1>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px; color: #000000;\">Saca el máximo rendimiento a tu ecommerce, automatiza tareas y deja trabajar a tu equipo en lo realmente importante.</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"VT5U7LN\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"FBAO1NV\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"I40FLL4\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PJ5API4\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"align-center\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WMU1OQY\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"text-align: center;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 28px;\"><strong>Magento SAP Business One Integration</strong></span></h2>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Automatiza la sincronización entre tu ERP y Adobe Ecommerce</span></p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"EFUM2OR\"></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\"><span style=\"font-size: 64px;\"><strong>1.500€<span style=\"font-size: 42px;\"> </span></strong><span style=\"font-size: 42px;\">/mes</span></span></p></div><div data-content-type=\"buttons\" data-appearance=\"stacked\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"IT1ETSC\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HHR94J2\"><div class=\"pagebuilder-button-primary\" data-element=\"empty_link\" data-pb-style=\"IP2SR7M\"><span data-element=\"link_text\">Contratar</span></div></div></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"AY3A0IS\" style=\"text-align: center;\"><strong><span style=\"font-size: 18px;\">Precio final para siempre y sin permanencia</span></strong></p></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left;\"> </p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\"><strong>INCLUYE</strong></span></p>\r\n<ul>\r\n<li style=\"text-align: left;\"><span style=\"font-size: 18px;\">Conector bidireccional SAP Business One - Magento</span></li>\r\n<li style=\"text-align: left;\"><span style=\"font-size: 18px;\">Todas las funcionalidades activas</span></li>\r\n<li style=\"text-align: left;\"><span style=\"font-size: 18px;\">Diseño web inicial</span></li>\r\n<li style=\"text-align: left;\"><span style=\"font-size: 18px;\">Mantenimiento y hosting</span></li>\r\n<li style=\"text-align: left;\"><span style=\"font-size: 18px;\">Implementación de todas las mejoras del conector</span></li>\r\n</ul></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PBKHI02\"></div></div></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"Q5BOW34\"><p style=\"text-align: center;\"><span style=\"font-size: 18px;\"><span style=\"font-size: 20px;\"><strong>¿No terminas de decidirte?</strong></span> Habla con nuestro equipo de expertos</span></p></div><div data-content-type=\"buttons\" data-appearance=\"stacked\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"WSONUUY\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"R4A0JWB\"><div class=\"pagebuilder-button-primary\" data-element=\"empty_link\" data-pb-style=\"BVEOAKJ\"><span data-element=\"link_text\">Concertar una reunión</span></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"B3WR1N9\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"VO6M3A3\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"W16URT0\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"UFGI6IF\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"U0U80Q2\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 34px;\"><strong><span style=\"color: #ffffff;\">Activo en 30 días</span></strong></span></h2>\r\n<p style=\"text-align: left;\"><span style=\"color: #ffffff; font-size: 18px;\">Conecta bidireccionalmente tu nueva web en Magento 2 con SAP Business One en 30 días. </span><span style=\"color: #ffffff; font-size: 18px;\">No pierdas el tiempo y hazlo fácil.</span></p>\r\n<p style=\"text-align: left;\"> </p>\r\n<p style=\"text-align: left;\"><span style=\"color: #ffffff; font-size: 18px;\">Este será nuestro flujo de trabajo.</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"F6S2T7V\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HA9L8G6\"><h3 style=\"text-align: left;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\"><img id=\"AUDR4AI\" style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Flujo_de_trabajo.png\" alt=\"\" width=\"85\" height=\"85\"></span></strong></span></h3>\r\n<h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\">Conexión</span></strong></span></h3></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"RFD04LJ\"><h3 style=\"text-align: left;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\"><img id=\"OIA8BH4\" style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Flujo_de_trabajo3.png\" alt=\"\" width=\"85\" height=\"85\"></span></strong></span></h3>\r\n<h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\">Verificación</span></strong></span></h3></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IN0HC4S\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"J4YCTL6\"><h3 style=\"text-align: left;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\"><img id=\"KA3KPPE\" style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Flujo_de_trabajo2.png\" alt=\"\" width=\"85\" height=\"85\"></span></strong></span></h3>\r\n<h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span id=\"TXXUYVL\" style=\"font-size: 24px;\">Activación</span></strong></span></h3></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"P720G4F\"><h3 style=\"text-align: left;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\"><img id=\"T0GY77V\" style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Flujo_de_trabajo4.png\" alt=\"\" width=\"85\" height=\"85\"></span></strong></span></h3>\r\n<h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong><span style=\"font-size: 24px;\">Mantenimiento</span></strong></span></h3></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"H3HEP7P\"></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"XMQA468\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"NYN4PD7\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"XV71I69\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"P7SRLWM\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"VBHTO4F\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"line-height: 10px; text-align: left;\"><span style=\"font-size: 14px;\">Opinión de clientes</span></p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"QU6VSFO\"></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"line-height: 32px; text-align: right;\"><span style=\"font-size: 28px;\">Sencillo. Una solución honesta. Un proveedor de desarrollo informático que no me hace dependiente.</span></p>\r\n<p style=\"text-align: right;\"> </p>\r\n<p style=\"text-align: right;\"><strong>Borja Crespo</strong></p>\r\n<p style=\"line-height: 10px; text-align: right;\"><span style=\"font-size: 12px;\">Piqueras y Crespo</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IU39C9Q\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"UC4BDWW\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Borja.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"K3SYS1X\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Borja.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"W7T9241\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"W4R4JYJ\"></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"ER5FY1L\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"D4WEYDB\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"W0GSJE3\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"W1V6S76\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><!DOCTYPE html>\r\n<html>\r\n\r\n<head>\r\n <style>\r\n /* Estilos para el menu colapsable */\r\n .collapsible {\r\n background-color: #777;\r\n font-weight: bold;\r\n color: white;\r\n cursor: pointer;\r\n padding: 18px;\r\n width: 100%;\r\n border: none;\r\n text-align: left;\r\n outline: none;\r\n font-size: 20px;\r\n }\r\n\r\n .active,\r\n .collapsible:hover {\r\n background-color: #555;\r\n }\r\n\r\n .collapsible:after {\r\n content: \'\\002B\';\r\n color: white;\r\n font-weight: bold;\r\n float: right;\r\n margin-left: 5px;\r\n }\r\n\r\n .active:after {\r\n content: \"\\2212\";\r\n }\r\n /* Estilos para el contenido del menu colapsable */\r\n .NCD-content {\r\n padding: 18px;\r\n display: none;\r\n overflow: hidden;\r\n background-color: #f2f3f8;\r\n font-size: 18px;\r\n }\r\n </style>\r\n</head>\r\n\r\n<body>\r\n\r\n <div class=\"collapsible\">¿Para quién es la integración SAP Business One - Magento 2?</div>\r\n <div class=\"NCD-content\">\r\n <p>La integración SAP Business One - Magento 2 de NC Desarrollos está dirigida a empresas que utilizan SAP Business One como su ERP y desean establecer una presencia en línea mediante una tienda en Magento 2. Esto incluye:</p>\r\n <ul>\r\n <li>Empresas que ya tienen una tienda en Magento 1 y desean migrar a Magento 2 para integrarse mejor con SAP Business One.</li>\r\n <li>Empresas que aún no tienen presencia en línea y buscan iniciar su comercio electrónico.</li>\r\n </ul>\r\n </div>\r\n\r\n<div class=\"collapsible\">¿Puedo probarlo sin pagar?</div>\r\n <div class=\"NCD-content\">\r\n <p>Sí, NC Desarrollos ofrece una versión de demostración que te permite probar la integración conectada a tu base de datos. Esto te permite explorar todas las funcionalidades y características de la integración sin necesidad de pagar de inmediato.</p>\r\n </div>\r\n\r\n <div class=\"collapsible\">¿Cómo funciona después de contratar mi subscripción al conector?</div>\r\n <div class=\"NCD-content\">\r\n <p>Una vez que hayas contratado la suscripción al conector SAP Business One - Magento 2 de NC Desarrollos, se inicia el proceso de integración de la siguiente manera:</p>\r\n <ol>\r\n <li>Establecimiento de una suscripción: Se formaliza el acuerdo de suscripción entre tu empresa y NC Desarrollos.</li>\r\n <li>Configuración y personalización: Nuestro equipo técnico configurará el conector y se encargará del diseño web en base a la imagen de tu empresa.</li>\r\n <li>Pruebas y ajustes: Realizaremos pruebas exhaustivas para asegurarnos de que la integración funcione correctamente y se ajuste a tus expectativas.</li>\r\n <li>Puesta en marcha: Una vez que todas las pruebas sean exitosas y estemos seguros de que la integración está funcionando según lo previsto, procederemos a la puesta en marcha del conector.</li>\r\n <li>Soporte continuo: NC Desarrollos proporcionará soporte continuo y actualizaciones para garantizar un funcionamiento óptimo de la integración a lo largo del tiempo.</li>\r\n </ol>\r\n <p>Nuestro objetivo es que en un plazo máximo de 30 días desde el inicio de la suscripción, tu ecommerce esté plenamente conectado y operativo con SAP Business One, permitiéndote gestionar de manera integrada y eficiente tu tienda online.</p>\r\n </div>\r\n\r\n <div class=\"collapsible\">¿Puedo cancelar mi suscripción cuando quiera?</div>\r\n <div class=\"NCD-content\">\r\n <p>Si, puedes cancelar la suscripción a nuestro conector cuando quieras. Una vez que nos lo comuniques, lo informaremos al sistema y la conexión entre SAP Business One y tu web se apagará a final de mes.</p>\r\n </div>\r\n\r\n <div class=\"collapsible\">¿Cómo accedo a las mejoras de sincronización entre SAP Business One y Magento?</div>\r\n <div class=\"NCD-content\">\r\n <p>Cuando se implementen nuevas mejoras, te enviaremos toda la información sobre su funcionamiento a través de un boletín.</p>\r\n <p>Una vez analizado por tu parte, solamente tendrás que comunicarnos que mejoras quieres que activemos para tu empresa, del resto ya nos ocupamos nosotros.</p>\r\n </div>\r\n\r\n <script>\r\n var coll = document.getElementsByClassName(\"collapsible\");\r\n var i;\r\n\r\n for (i = 0; i < coll.length; i++) {\r\n coll[i].addEventListener(\"click\", function () {\r\n this.classList.toggle(\"active\");\r\n var content = this.nextElementSibling;\r\n if (content.style.display === \"block\") {\r\n content.style.display = \"none\";\r\n } else {\r\n content.style.display = \"block\";\r\n }\r\n });\r\n }\r\n </script>\r\n\r\n</body>\r\n\r\n</html></div></div></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-08 08:33:22','2024-03-06 07:38:35',1),(5,'Casos de éxito','Casos de éxito','<div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-08 08:34:15','2024-02-08 08:34:15',1),(6,'JavScript ROI','ROI','<div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\"><script>\r\n function updateHoursSaved() {\r\n const hoursPerDay = parseInt(document.getElementById(\"errors\").value);\r\n const hoursSavedPerYear = hoursPerDay * 365;\r\n document.getElementById(\"timesavedLabel\").textContent = hoursSavedPerYear;\r\n updateFinancialSavings(); // Actualiza también el coste total\r\n }\r\n\r\n function updateFinancialSavings() {\r\n const averageRate = parseInt(document.getElementById(\"averageRate\").value);\r\n const financialSavingsPerYear = averageRate * 365;\r\n document.getElementById(\"errorsLabel\").textContent = financialSavingsPerYear.toLocaleString();\r\n }\r\n\r\n // Actualiza automáticamente cada 5 segundos\r\n setInterval(updateHoursSaved, 0001);\r\n </script></div>','2024-02-08 10:38:18','2024-02-08 11:13:35',1),(7,'Mejoras programadas','Mejoras programadas','<style>#html-body [data-pb-style=TOAVHLL]{background-color:#1a1f3b;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=J86X1IN],#html-body [data-pb-style=K6SRULI]{background-position:left top;background-size:auto;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=K6SRULI]{background-position:right bottom}#html-body [data-pb-style=C5L7R8D],#html-body [data-pb-style=K5GNX8M],#html-body [data-pb-style=QT5IR9P]{background-position:left top;background-size:auto;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=K5GNX8M],#html-body [data-pb-style=QT5IR9P]{background-position:right bottom}#html-body [data-pb-style=K5GNX8M]{background-position:left top;background-size:cover}#html-body [data-pb-style=ADJEI0Y],#html-body [data-pb-style=B4XTF7T],#html-body [data-pb-style=DGXGHPY],#html-body [data-pb-style=M2J9LUS],#html-body [data-pb-style=R8QNPQO],#html-body [data-pb-style=VPK9Y1Q]{display:flex;width:100%}#html-body [data-pb-style=C6G4SYI],#html-body [data-pb-style=COY02D5],#html-body [data-pb-style=KHVULDA],#html-body [data-pb-style=MDK06UO],#html-body [data-pb-style=V759YDH]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=C6G4SYI],#html-body [data-pb-style=COY02D5],#html-body [data-pb-style=MDK06UO],#html-body [data-pb-style=V759YDH]{justify-content:center;width:50%}#html-body [data-pb-style=C6G4SYI],#html-body [data-pb-style=MDK06UO],#html-body [data-pb-style=V759YDH]{width:33.3333%}#html-body [data-pb-style=C6G4SYI],#html-body [data-pb-style=MDK06UO]{justify-content:flex-start;width:8.33333%}#html-body [data-pb-style=IMYH7K1],#html-body [data-pb-style=JXES6PM],#html-body [data-pb-style=MNM5K4P],#html-body [data-pb-style=NCILGFU],#html-body [data-pb-style=RGFFH57],#html-body [data-pb-style=X9WJDXV]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=IMYH7K1],#html-body [data-pb-style=MNM5K4P],#html-body [data-pb-style=NCILGFU],#html-body [data-pb-style=RGFFH57],#html-body [data-pb-style=X9WJDXV]{width:50%}#html-body [data-pb-style=IMYH7K1],#html-body [data-pb-style=NCILGFU],#html-body [data-pb-style=RGFFH57],#html-body [data-pb-style=X9WJDXV]{width:8.33333%}#html-body [data-pb-style=NCILGFU],#html-body [data-pb-style=RGFFH57]{width:41.6667%}#html-body [data-pb-style=BB8BC7G],#html-body [data-pb-style=E89D52S],#html-body [data-pb-style=I428CRV],#html-body [data-pb-style=PJF2CJT],#html-body [data-pb-style=TKAPV8I],#html-body [data-pb-style=WRMDYOR]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=I428CRV],#html-body [data-pb-style=PJF2CJT],#html-body [data-pb-style=TKAPV8I],#html-body [data-pb-style=WRMDYOR]{width:33.3333%}#html-body [data-pb-style=I428CRV],#html-body [data-pb-style=PJF2CJT],#html-body [data-pb-style=WRMDYOR]{width:50%}#html-body [data-pb-style=PJF2CJT],#html-body [data-pb-style=WRMDYOR]{width:8.33333%}#html-body [data-pb-style=A4ME0IX],#html-body [data-pb-style=LRDCKP4],#html-body [data-pb-style=PH0XUM5],#html-body [data-pb-style=TYTDFH0],#html-body [data-pb-style=VTP4AFI],#html-body [data-pb-style=XYLQV5D]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;align-self:stretch}#html-body [data-pb-style=A4ME0IX],#html-body [data-pb-style=PH0XUM5],#html-body [data-pb-style=TYTDFH0],#html-body [data-pb-style=XYLQV5D]{width:8.33333%}#html-body [data-pb-style=A4ME0IX],#html-body [data-pb-style=XYLQV5D]{width:83.3333%}#html-body [data-pb-style=A4ME0IX]{width:8.33333%}#html-body [data-pb-style=W7WLWIO]{padding-left:35px;padding-right:35px}#html-body [data-pb-style=JS5SS2V]{text-align:center;border-style:none}#html-body [data-pb-style=JRL7G23],#html-body [data-pb-style=M20AALP]{max-width:100%;height:auto}#html-body [data-pb-style=BXKPP0F],#html-body [data-pb-style=EJ8MCB0]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=Q5Q5C1W]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=XUB9QNA]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=QM7YF8M]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=HLQ968C]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=YA6IVFU]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=IYGXDSA]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=LKNRSH3]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=Y3O485F]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=IFS4J9V]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}#html-body [data-pb-style=K5SNXL7]{margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=AJVEWNL]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-color:#f2f3f8;border-radius:20px}#html-body [data-pb-style=V4O1C0F]{border-radius:20px;background-color:transparent;padding-top:0;padding-bottom:10px}@media only screen and (max-width: 768px) { #html-body [data-pb-style=JS5SS2V]{border-style:none} }</style><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"TOAVHLL\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"M2J9LUS\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"KHVULDA\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"COY02D5\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"W7WLWIO\"><h1 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"color: #ffffff;\"><strong>Mejoras progradas para el conector</strong></span></h1>\r\n<h2><span style=\"color: #ffffff;\">Trabajamos para ofrecerte una mejor integración</span></h2>\r\n<div class=\"elementor-element elementor-element-2ecc60bc elementor-widget elementor-widget-text-editor\" data-id=\"2ecc60bc\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<p><span style=\"color: #ffffff; font-size: 18px;\">Establecemos líneas de desarrollo de acuerdo a las necesidades de nuestros usuarios. Nuestro objetivo, poner a tu disposición una <strong>sincronización entre tu e-commerce y SAP Business One </strong>cada vez más fácil.</span></p>\r\n</div>\r\n</div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"V759YDH\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"JS5SS2V\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/NC_Desarrollos_conector.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"M20AALP\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/NC_Desarrollos_conector.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"JRL7G23\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"C6G4SYI\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo_2.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"J86X1IN\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"ADJEI0Y\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MDK06UO\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"JXES6PM\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MNM5K4P\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"BXKPP0F\"></div><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"Q5Q5C1W\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"XUB9QNA\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"QM7YF8M\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span id=\"R0U0NIW\" style=\"font-size: 24px;\">Servicio post-venta</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Se implementará en el perfil del usuario de Magento un apartado que pemita al cliente consultar el código de seguimiento,<strong> gestionar incidencias</strong> o abrir tickets.</span></p><p></p><p><span style=\"font-size: 18px;\">Estas incidencias se sincronizarán con SAP Business One para que el equipo de postventa sea más ágil y se preste un <strong>servicio excelente al cliente</strong>. </span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"X9WJDXV\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"K6SRULI\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"B4XTF7T\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IMYH7K1\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"NCILGFU\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"HLQ968C\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"YA6IVFU\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"IYGXDSA\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span style=\"font-size: 24px;\">Chatbot</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Integrar un <strong>chatbot dentro del ecosistema del conector SAP Business One - Magento 2</strong> para que el contacto generado o los datos obtenidos a través del chat entren dentro del sistema y dispararen acciones como envíos de emailmarketing o llamadas comerciales.</span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"RGFFH57\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BB8BC7G\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo_3.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"C5L7R8D\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"R8QNPQO\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"E89D52S\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"TKAPV8I\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"I428CRV\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"LKNRSH3\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"Y3O485F\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"IFS4J9V\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span style=\"font-size: 24px;\">Integración con marketplaces</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Desarrollo de integraciones entre Magento 2 y marketplaces como Amazon o Miravia.</span></p><p style=\"line-height: 20px;\"></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\"><strong>Integración automática de surtido, stock y pedidos.</strong> Las ventas generadas en los marketplaces se trasladarán como pedidos a Magento 2 y, de esta forma, entrarán automáticamente en SAP Business One para su gestión. </span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WRMDYOR\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{\\"desktop_image\\":\\"{{media url=wysiwyg/Fondo.png}}\\"}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"QT5IR9P\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"DGXGHPY\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PJF2CJT\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"VTP4AFI\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"K5SNXL7\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"AJVEWNL\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"V4O1C0F\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 id=\"Y531OC8\" style=\"line-height: 48px;\"><span style=\"color: #e6007e;\"><strong><span style=\"font-size: 24px;\">Integración con proveedores</span></strong></span></h3><p></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Muchas empresas que se dedican a la distribución utilizan el <strong>servicio Dropshipping</strong> que ponen a su disposición fabricantes y mayoristas.</span></p><p style=\"line-height: 20px;\"></p><p style=\"line-height: 20px;\"><span style=\"font-size: 18px;\">Por ello, es interesante implementar un desarrollo tecnológico que nos permita extraer los datos de stock y precios a tiempo real que nos ofrecen nuestros proveedores para ofrecer en el mercado la mejor oferta posible.</span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LRDCKP4\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"TYTDFH0\"></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"K5GNX8M\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"VPK9Y1Q\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PH0XUM5\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XYLQV5D\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"EJ8MCB0\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"A4ME0IX\"></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-12 08:05:34','2024-02-12 08:48:21',1); /*!40000 ALTER TABLE `cms_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_block_store` -- DROP TABLE IF EXISTS `cms_block_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_block_store` ( `block_id` smallint NOT NULL, `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`block_id`,`store_id`), KEY `CMS_BLOCK_STORE_STORE_ID` (`store_id`), CONSTRAINT `CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE, CONSTRAINT `CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CMS Block To Store Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_block_store` -- LOCK TABLES `cms_block_store` WRITE; /*!40000 ALTER TABLE `cms_block_store` DISABLE KEYS */; INSERT INTO `cms_block_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,0); /*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_page` -- DROP TABLE IF EXISTS `cms_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_page` ( `page_id` smallint 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 NOT NULL DEFAULT '1' COMMENT 'Is Page Active', `sort_order` smallint 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 `CMS_PAGE_IDENTIFIER` (`identifier`), FULLTEXT KEY `CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='CMS Page Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_page` -- LOCK TABLES `cms_page` WRITE; /*!40000 ALTER TABLE `cms_page` DISABLE KEYS */; INSERT INTO `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','2023-12-19 06:17:59','2023-12-19 06:17:59',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'NC Desarrollos - Integración SAP Business One - Magento 2','cms-full-width','Optimiza la eficiencia de tu negocio con nuestra solución de integración bidireccional entre Magento y SAP Business One. Nuestro conector garantiza una sincronización precisa de pedidos, detalles de clientes, stock y precios. Descubre cómo NC Desarrollos simplifica la gestión de tu comercio electrónico y ERP.','Integración bidireccional para Magento y SAP Business One, Conector Magento - SAP Business One, Sincronización SAP Business One y Magento 2, Desarrollos para Magento y SAP Business One','home','','<style>#html-body [data-pb-style=F9Q1GHE]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#1a1f3b;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-bottom:20px}#html-body [data-pb-style=L380Y6I]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=APP7RI1]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=QAF885F]{display:flex;width:100%}#html-body [data-pb-style=A4A561V]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=FIQP1C9]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=CJD83L5]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;padding:20px;align-self:stretch}#html-body [data-pb-style=QI46V3A]{text-align:center;margin-top:20px}#html-body [data-pb-style=SPHJ41X]{display:inline-block}#html-body [data-pb-style=ALUW8KO]{text-align:center}#html-body [data-pb-style=KKQS3Y0]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;align-self:stretch}#html-body [data-pb-style=M5MKQDQ]{text-align:center;border-style:none}#html-body [data-pb-style=G6RY8KL],#html-body [data-pb-style=S2SXCT3]{max-width:100%;height:auto}#html-body [data-pb-style=J7I5533]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=KSGOG3E],#html-body [data-pb-style=Y1512N7]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=SP2UUS9],#html-body [data-pb-style=SQ71Q3U]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=SQ71Q3U]{justify-content:flex-start;display:flex;flex-direction:column;margin-top:20px;margin-bottom:20px}#html-body [data-pb-style=SP2UUS9]{align-self:stretch}#html-body [data-pb-style=FFUIDNI]{display:flex;width:100%}#html-body [data-pb-style=CQFCX3L],#html-body [data-pb-style=K2J075H]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px 40px 20px 20px;align-self:stretch}#html-body [data-pb-style=K2J075H]{justify-content:center;width:33.3333%}#html-body [data-pb-style=I0SFWFL]{text-align:left;margin-top:25px}#html-body [data-pb-style=OEWYU7R]{display:inline-block}#html-body [data-pb-style=CCIEF9I]{text-align:center}#html-body [data-pb-style=FFIC5EK]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;padding:20px;align-self:stretch}#html-body [data-pb-style=YHQISLE]{margin-right:20px;margin-bottom:20px}#html-body [data-pb-style=GK7AM2M]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-radius:20px}#html-body [data-pb-style=OR2ERQ5]{border-radius:20px;min-height:10rem;background-color:transparent;padding:0 20px 10px}#html-body [data-pb-style=L2KXF76]{margin-right:20px;margin-bottom:20px}#html-body [data-pb-style=YFI6M96]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-radius:20px}#html-body [data-pb-style=UUX166J]{border-radius:20px;min-height:10rem;background-color:transparent;padding:0 20px 10px}#html-body [data-pb-style=DFMWSBU]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;padding:20px;align-self:stretch}#html-body [data-pb-style=OINCMMD]{margin-right:20px;margin-bottom:20px}#html-body [data-pb-style=X79WSD8]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-radius:20px}#html-body [data-pb-style=VNVFL01]{border-radius:20px;min-height:10rem;background-color:transparent;padding:0 20px 10px}#html-body [data-pb-style=BOOUX61]{margin-right:20px;margin-bottom:20px}#html-body [data-pb-style=X3YMPX0]{background-color:#f2f3f8;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-radius:20px}#html-body [data-pb-style=NFY8TTL]{border-radius:20px;min-height:10rem;background-color:transparent;padding:0 20px 10px}#html-body [data-pb-style=T95JDE0]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;width:8.33333%;padding:20px 40px 20px 20px;align-self:stretch}#html-body [data-pb-style=G4PR08T],#html-body [data-pb-style=T95JDE0],#html-body [data-pb-style=UGDA7OT]{background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=UGDA7OT]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#1a1f3b;background-position:right bottom;margin-bottom:20px}#html-body [data-pb-style=G4PR08T]{background-position:left top;padding-top:20px;padding-bottom:20px;align-self:stretch}#html-body [data-pb-style=YMJRAYJ]{display:flex;width:100%}#html-body [data-pb-style=PG4GN9J]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;padding:20px;align-self:stretch}#html-body [data-pb-style=MTAOCXL]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=RSLEQRJ]{justify-content:center;display:flex;flex-direction:column;background-position:center center;background-size:contain;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;padding:20px;align-self:stretch}#html-body [data-pb-style=YBGN6J1]{padding:20px;border-style:none}#html-body [data-pb-style=J7PN63F],#html-body [data-pb-style=MDOGW0H]{max-width:100%;height:auto}#html-body [data-pb-style=S8IOQWD]{text-align:center;margin-top:20px}#html-body [data-pb-style=K01J57K]{display:inline-block}#html-body [data-pb-style=UFX2VWG]{text-align:center}#html-body [data-pb-style=CFEMB4M],#html-body [data-pb-style=XGGCPC0]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:41.6667%;padding:20px;align-self:stretch}#html-body [data-pb-style=XGGCPC0]{width:8.33333%}#html-body [data-pb-style=IG496DH]{width:100%;border-width:1px;border-color:transparent;display:inline-block}#html-body [data-pb-style=Q5K3WWD],#html-body [data-pb-style=WUV4WUT]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=WUV4WUT]{justify-content:flex-start;display:flex;flex-direction:column;padding:20px}#html-body [data-pb-style=Q5K3WWD]{align-self:stretch}#html-body [data-pb-style=SS9UIJ0]{display:flex;width:100%}#html-body [data-pb-style=RAFLE0J]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#f2f3f8;border-radius:20px;width:25%;margin:10px;align-self:center}#html-body [data-pb-style=B3GIPR9],#html-body [data-pb-style=RAFLE0J]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=XJ8UL6V]{border-radius:0;min-height:300px;background-color:transparent}#html-body [data-pb-style=X5PKUL6]{justify-content:flex-start;display:flex;flex-direction:column;background-color:#f2f3f8;border-radius:20px;width:25%;margin:10px;align-self:center}#html-body [data-pb-style=OCUOQ0Y],#html-body [data-pb-style=X5PKUL6]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=AXGNW1P]{border-radius:0;min-height:300px;background-color:transparent}#html-body [data-pb-style=EHI2YCM]{justify-content:flex-start;display:flex;flex-direction:column;background-color:transparent;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;border-radius:20px;width:50%;padding:20px;align-self:stretch}#html-body [data-pb-style=UK46L1F]{text-align:center;border-style:none}#html-body [data-pb-style=RAJISUN],#html-body [data-pb-style=UEOBHSC]{border-radius:20px;max-width:100%;height:auto}#html-body [data-pb-style=F8H2BCG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=VG4N2LI]{margin-bottom:20px}#html-body [data-pb-style=HFA8NS0]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=F7JLEUW]{display:flex;width:100%}#html-body [data-pb-style=DI9XKPJ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:50%;padding:10px;align-self:stretch}#html-body [data-pb-style=MDXJ4M0]{border-style:none}#html-body [data-pb-style=FIFHAK8],#html-body [data-pb-style=LAE4D9N]{border-radius:20px;max-width:100%;height:auto}#html-body [data-pb-style=WOT4HLP]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:50%;padding:10px;align-self:stretch}#html-body [data-pb-style=I2F8VR3]{border-style:none}#html-body [data-pb-style=GU4LQU8],#html-body [data-pb-style=MKGSTIE]{border-radius:20px;max-width:100%;height:auto}#html-body [data-pb-style=BWMX8GK]{width:100%;border-width:1px;border-color:transparent;display:inline-block}@media only screen and (max-width: 768px) { #html-body [data-pb-style=I2F8VR3],#html-body [data-pb-style=M5MKQDQ],#html-body [data-pb-style=MDXJ4M0],#html-body [data-pb-style=UK46L1F],#html-body [data-pb-style=YBGN6J1]{border-style:none} }</style><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"F9Q1GHE\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"L380Y6I\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"APP7RI1\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"QAF885F\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"A4A561V\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"FIQP1C9\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CJD83L5\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h1><strong><span id=\"H6WFUWX\" style=\"color: #ffffff;\">Integración bidireccional para Magento y SAP Business One</span></strong></h1></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2><span style=\"color: #ffffff;\">Sincroniza tu SAP Business One con Adobe Ecommerce en 30 días.</span></h2></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><span style=\"color: #ffffff; font-size: 18px;\">Conectamos tu ERP SAP Business One con Magento 2 de forma fácil y rápida.</span></p>\r\n<p><span style=\"color: #ffffff; font-size: 18px;\"><strong>Sin inversiones iniciales, </strong></span><span style=\"color: #ffffff; font-size: 18px;\"><strong>sin pagar por desarrollos posteriores </strong></span><span style=\"color: #ffffff; font-size: 18px;\"><strong>y sin ataduras.</strong></span></p></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"QI46V3A\"><div class=\"button-home\" data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"SPHJ41X\"><a class=\"pagebuilder-button-primary\" href=\"https://calendly.com/proyectos-nc-desarrollos/solicitud-de-prueba-conector-magento-sap\" target=\"_blank\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"ALUW8KO\"><span data-element=\"link_text\">¿No te lo crees? Pregúntanos</span></a></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"KKQS3Y0\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"M5MKQDQ\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/NC_Desarrollos_conector.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"G6RY8KL\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/NC_Desarrollos_conector.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"S2SXCT3\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J7I5533\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"Y1512N7\"></div></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"KSGOG3E\"></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"SQ71Q3U\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"SP2UUS9\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"FFUIDNI\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CQFCX3L\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"K2J075H\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 id=\"LR3TU25\"><span style=\"font-size: 34px;\"><strong>Conector Magento - SAP Business One</strong></span></h2></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><span style=\"font-size: 18px;\">Sincronizar SAP B1 y Magento es fácil.</span></p>\r\n<p> </p>\r\n<p id=\"WIH81PP\"><span style=\"font-size: 18px;\">Disfruta de un <strong>conector bidireccional Magento ERP</strong> completo.</span></p>\r\n<p> </p>\r\n<p><span style=\"font-size: 18px;\">Haz que tu equipo trabaje mejor y más rápido.</span></p></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"I0SFWFL\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"OEWYU7R\"><a class=\"pagebuilder-button-primary\" href=\"https://nc.ncdesarrollos.com/conector-bidireccional-sap-business-one-magento-2.html\" target=\"\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"CCIEF9I\"><span data-element=\"link_text\">Quiero más detalles</span></a></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FFIC5EK\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"YHQISLE\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"GK7AM2M\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"OR2ERQ5\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><img style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Funcionalidades3.png\" alt=\"\" width=\"85\" height=\"85\"></h3><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 20px;\"><strong>General</strong></span></h3><p>El conector permite tener una tienda online Magento 2 totalmente funcional sin necesidad de mantenimiento alguno.</p></div></div></div></div></div></div><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"L2KXF76\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"YFI6M96\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"UUX166J\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><img style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Funcionalidades.png\" alt=\"\" width=\"85\" height=\"85\"></h3><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 20px;\"><strong>Productos</strong></span></h3><p>Sincronización en tiempo real de categorías, productos, stock y precios. También para cada una de las vistas de tu Magento, en función del idioma.</p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"DFMWSBU\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"OINCMMD\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"X79WSD8\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"VNVFL01\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><img style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Funcionalidades2.png\" alt=\"\" width=\"85\" height=\"85\"></h3><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span style=\"font-size: 20px;\"><strong>Clientes</strong></span></h3><p>Sincronización bidireccional de clientes, grupos y tarifas por grupo. Actualización bidireccional y automática de datos.</p></div></div></div></div></div></div><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" data-pb-style=\"BOOUX61\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"X3YMPX0\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"NFY8TTL\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><img style=\"width: 85px; height: 85px;\" src=\"{{media url=wysiwyg/Funcionalidades4.png}}\" alt=\"\" width=\"85\" height=\"85\"></h3><h3 id=\"OK8K6HT\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><strong><span style=\"font-size: 20px;\">Pedidos</span></strong></h3><p>Todos los pedidos tramitados en la web se sincronizan automáticamente en SAP B1. Actualización en tiempo real del estado del pedido.</p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"T95JDE0\"></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-bleed\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"UGDA7OT\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"G4PR08T\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"YMJRAYJ\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"PG4GN9J\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"MTAOCXL\"></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"RSLEQRJ\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"YBGN6J1\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/NC_Desarrollos_logo_blanco.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"J7PN63F\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/NC_Desarrollos_logo_blanco.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"MDOGW0H\"></figure><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"S8IOQWD\"><div class=\"button-home\" data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"K01J57K\"><a class=\"pagebuilder-button-primary\" href=\"https://nc.ncdesarrollos.com/conector-bidireccional-sap-business-one-magento-2/mejoras-programadas.html\" target=\"_blank\" data-link-type=\"default\" data-element=\"link\" data-pb-style=\"UFX2VWG\"><span data-element=\"link_text\">Mejoras programadas</span></a></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"CFEMB4M\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h1><span style=\"color: #ffffff;\"><strong><span id=\"H6WFUWX\">Desarrollos para Magento y SAP Business One incluidos</span></strong></span></h1></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2><span style=\"color: #ffffff;\">Sincronización SAP Business One y Magento 2.</span></h2></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><span style=\"color: #ffffff; font-size: 18px;\">La suscripción a nuestro <strong>conector bidireccional SAP Business One - Magento</strong> incluye acceso ilimitado a todas las mejoras que se implementen. </span></p>\r\n<p><span style=\"color: #ffffff; font-size: 18px;\"><strong>Olvídate de pagar por cada desarrollo que necesite tu empresa.</strong></span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"XGGCPC0\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"IG496DH\"></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"WUV4WUT\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 id=\"LR3TU25\"><strong>¿Tienes dudas?</strong></h2>\r\n<p><span style=\"font-size: 20px;\">Tranquilo, sabemos que es una decisión importante para tu negocio.</span></p></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p><span style=\"font-size: 18px;\">Podemos hablar cuando quieras, no intentaremos venderte nada en la primera llamada.</span></p></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"Q5K3WWD\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"SS9UIJ0\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"align-center\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"RAFLE0J\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"B3GIPR9\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"XJ8UL6V\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3><img style=\"width: 85px; height: 85px;\" src=\"https://nc.ncdesarrollos.com/media/wysiwyg/Contacto.png\" alt=\"\" width=\"85\" height=\"85\"></h3><h3>Hablar por chat</h3><p><span style=\"font-size: 14px;\">Para pequeñas dudas, rápido y fácil.</span></p><p><span style=\"font-size: 14px;\"><span style=\"font-size: 16px;\">Iniciar una conversación</span></span></p><p><span style=\"font-size: 14px;\"><span style=\"font-size: 16px;\"><span style=\"font-size: 26px;\">→</span></span></span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"align-center\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"X5PKUL6\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><a href=\"https://calendly.com/proyectos-nc-desarrollos/solicitud-de-prueba-conector-magento-sap\" target=\"_blank\" data-link-type=\"default\" title=\"\" data-element=\"link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"OCUOQ0Y\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"AXGNW1P\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3><img style=\"width: 85px; height: 85px;\" src=\"{{media url=wysiwyg/Contacto2.png}}\" alt=\"\" width=\"85\" height=\"85\"></h3><h3>Videollamada</h3><p><span style=\"font-size: 14px;\">Para tratar el tema en produndidad.</span></p><p><span style=\"font-size: 14px;\"><span style=\"font-size: 16px;\">Agendar una llamada</span></span></p><p><span style=\"font-size: 14px;\"><span style=\"font-size: 16px;\"><span style=\"font-size: 26px;\">→</span></span></span></p></div></div></div></div></a></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"EHI2YCM\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"UK46L1F\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Habla_con_expertos.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"UEOBHSC\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Habla_con_expertos.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"RAJISUN\"></figure></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"main\" data-pb-style=\"F8H2BCG\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"VG4N2LI\"><h2 id=\"LR3TU25\"><strong>Proyectos</strong></h2>\r\n<p><span style=\"font-size: 20px;\">Estas son las empresas que ya han contratado nuestro Conector SAP Business One - Magento 2</span></p></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"HFA8NS0\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"F7JLEUW\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"DI9XKPJ\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"MDXJ4M0\"><a href=\"https://piquerasycrespo.com/\" target=\"_blank\" data-link-type=\"default\" title=\"\" data-element=\"link\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Piqueras_y_Crespo.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"LAE4D9N\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Piqueras_y_Crespo.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"FIFHAK8\"></a></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WOT4HLP\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"I2F8VR3\"><a href=\"https://www.sonpo.es/\" target=\"_blank\" data-link-type=\"default\" title=\"\" data-element=\"link\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Sonpo.jpg}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"MKGSTIE\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Sonpo.jpg}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"GU4LQU8\"></a></figure></div></div></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"BWMX8GK\"></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2023-12-19 06:17:59','2024-03-06 07:41:03',1,0,'<!--\n <referenceContainer name=\"right\">\n <referenceBlock name=\"catalog.compare.sidebar\" remove=\"true\" />\n </referenceContainer>-->','','',NULL,NULL,NULL,NULL,'NC Desarrollos - Integración SAP Business One - Magento 2'),(3,'Enable Cookies','cms-full-width','','','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>','2023-12-19 06:17:59','2024-02-06 12:52:27',1,0,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>','2023-12-19 06:17:59','2023-12-19 06:17:59',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Política de Cookies','cms-full-width','Conector Magento SAP Business One\r\nEmpresa Desarrollo Web','NC Desarrollos utiliza cookies para facilitar la navegación en nuestra web y mejorar la experiencia de nuestros usuarios.','politica-de-cookies','','<style>#html-body [data-pb-style=GHB3JWO]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=EP5C0F8],#html-body [data-pb-style=JY6UWBH]{margin-top:20px}#html-body [data-pb-style=GJA253O],#html-body [data-pb-style=P5PUFSJ],#html-body [data-pb-style=SFJTVBH]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=FA8LE7I],#html-body [data-pb-style=SC0ABLP],#html-body [data-pb-style=UKBW452]{display:flex;width:100%}#html-body [data-pb-style=J6SBTGT],#html-body [data-pb-style=K4J7N7D],#html-body [data-pb-style=L2S3F0C],#html-body [data-pb-style=MCF505N],#html-body [data-pb-style=ORP4LOO],#html-body [data-pb-style=S19NKWC],#html-body [data-pb-style=T9FN4AM],#html-body [data-pb-style=W4IVWKR],#html-body [data-pb-style=Y6EP6WI]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;padding:20px;align-self:stretch}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"GHB3JWO\"><h1 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Política de Cookies </h1><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>NC Desarrollos, S.L. utiliza cookies en su sitio web <a href=\"https://ncdesarrollos.es/\">ncdesarrollos.es</a> para facilitar la relación de los visitantes con nuestro contenido, además las mismas nos permiten elaborar estadísticas para mejorar nuestro rendimiento.</p>\r\n<p>Le informamos que podemos utilizar cookies con la finalidad de facilitar su navegación a través del Sitio Web, distinguirle de otros usuarios, proporcionarle una mejor experiencia en el uso del mismo, e identificar problemas para mejorar nuestro Sitio Web.</p>\r\n<p>Asimismo, en caso de que preste su consentimiento, utilizaremos cookies que nos permitan obtener más información acerca de sus preferencias y personalizar nuestro Sitio Web de conformidad con sus intereses individuales.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">¿Qué son las cookies?</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Se denominan cookies a unos pequeños archivos que se graban en el navegador utilizado por cada visitante de nuestra web para que el servidor pueda recordar la visita de ese usuario con posterioridad cuando vuelva a acceder a nuestros contenidos. Esta información no revela su identidad, ni dato personal alguno, ni accede al contenido almacenado en su pc, pero sí que permite a nuestro sistema identificarle a usted como un usuario determinado que ya visitó la web con anterioridad, visualizó determinadas páginas, etc. y además permite guardar sus preferencias personales e información técnica como por ejemplo las visitas realizadas o páginas concretas que visite.</p>\r\n<p>En cumplimiento de la Directiva 2009/136/CE, desarrollada en nuestro ordenamiento por el apartado segundo del artículo 22 de la Ley de Servicios de Sociedad de la Información, siguiendo las directrices de la Agencia Española de Protección de Datos, procedemos a informarle detalladamente del uso que se realiza en nuestra web.</p>\r\n<p>La presente política de cookies tiene por finalidad informarle de manera clara y precisa sobre las cookies que se utilizan en nuestro Sitio Web (la “Política de Cookies”). Respecto de las cookies de terceros, es decir aquellas que son ajenas a nuestro sitio web, no podemos hacernos responsables del contenido y veracidad de las políticas de privacidad que ellos incluyen por lo que la información que le ofrecemos es siempre con referencia a la fuente.</p>\r\n<p>A continuación, se realiza una clasificación de las cookies en función de una serie de categorías. No obstante es necesario tener en cuenta que una misma cookie puede estar incluida en más de una categoría.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Tipos de cookies</h2><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"SFJTVBH\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"SC0ABLP\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"S19NKWC\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies propias</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que se envían al equipo terminal del usuario desde un equipo o dominio gestionado por el propio editor y desde el que se presta el servicio solicitado por el usuario.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"ORP4LOO\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies de terceros</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que se envían al equipo terminal del usuario desde un equipo o dominio que no es gestionado por el editor, sino por otra entidad que trata los datos.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"K4J7N7D\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies de sesión</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son un tipo de cookies diseñadas para recabar y almacenar datos mientras el usuario accede a una página web.</p></div></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"P5PUFSJ\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"UKBW452\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"L2S3F0C\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies persistentes</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son un tipo de cookies en el que los datos siguen almacenados en el terminal y pueden ser accedidos y tratados durante un periodo definido por el responsable de la cookie, y que puede ir de unos minutos a varios años.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"T9FN4AM\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies técnicas</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que permiten al usuario la navegación a través de una página web, plataforma o aplicación y la utilización de las diferentes opciones o servicios que en ella existan como, por ejemplo, controlar el tráfico y la comunicación de datos, identificar la sesión, acceder a partes de acceso restringido, recordar los elementos que integran un pedido, realizar el proceso de compra de un pedido, realizar la solicitud de inscripción o participación en un evento, utilizar elementos de seguridad durante la navegación, almacenar contenidos para la difusión de videos o sonido o compartir contenidos a través de redes sociales.Son aquéllas que se envían al equipo terminal del usuario desde un equipo o dominio gestionado por el propio editor y desde el que se presta el servicio solicitado por el usuario.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J6SBTGT\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies de personalización</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que permiten al usuario acceder al servicio con algunas características de carácter general predefinidas en función de una serie de criterios en el terminal del usuario como por ejemplo serian el idioma, el tipo de navegador a través del cual accede al servicio, la configuración regional desde donde accede al servicio, etc.</p></div></div></div></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"GJA253O\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"FA8LE7I\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"MCF505N\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies de análisis</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que permiten al responsable de las mismas, el seguimiento y análisis del comportamiento de los usuarios de los sitios web a los que están vinculadas. La información recogida mediante este tipo de cookies se utiliza en la medición de la actividad de los sitios web, aplicación o plataforma y para la elaboración de perfiles de navegación de los usuarios de dichos sitios, aplicaciones y plataformas, con el fin de introducir mejoras en función del análisis de los datos de uso que hacen los usuarios del servicio.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"W4IVWKR\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies publicitarias</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que permiten la gestión, de la forma más eficaz posible, de los espacios publicitarios que, en su caso, el editor haya incluido en una página web, aplicación o plataforma desde la que presta el servicio solicitado en base a criterios como el contenido editado o la frecuencia en la que se muestran los anuncios.Son aquéllas que se envían al equipo terminal del usuario desde un equipo o dominio gestionado por el propio editor y desde el que se presta el servicio solicitado por el usuario.</p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"Y6EP6WI\"><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies de publicidad comportamental</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Son aquéllas que permiten la gestión, de la forma más eficaz posible, de los espacios publicitarios que, en su caso, el editor haya incluido en una página web, aplicación o plataforma desde la que presta el servicio solicitado. Estas cookies almacenan información del comportamiento de los usuarios obtenida a través de la observación continuada de sus hábitos de navegación, lo que permite desarrollar un perfil específico para mostrar publicidad en función del mismo.Son aquéllas que se envían al equipo terminal del usuario desde un equipo o dominio gestionado por el propio editor y desde el que se presta el servicio solicitado por el usuario.</p></div></div></div></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"EP5C0F8\"><p>Respecto al tratamiento de datos recabados a través de las cookies de análisis, a pesar de que no están exentas del deber de obtener un consentimiento informado para su uso, es poco probable que representen un riesgo para la privacidad de los usuarios siempre que se trate de cookies de primera parte, que traten datos agregados con una finalidad estrictamente estadística, que se facilite información sobre sus uso y se incluya la posibilidad de que los usuarios manifiesten su negativa sobre su utilización.</p>\r\n<p>Actualmente, la mayoría de los navegadores vienen configurados por defecto para bloquear la instalación de cookies de publicidad o de terceros en su equipo. El usuario puede ampliar las restricciones de origen, impidiendo la entrada de cualquier tipo de cookie, o, por el contrario eliminar dichas restricciones, aceptando la entrada de cualquier tipo de cookies. Si está interesado en admitir cookies de publicidad o de terceros, podrá configurar su navegador a tal fin.</p>\r\n<p>La aceptación realizada por el usuario, marcando el check habilitado en la información inicial sobre cookies implica que está consintiendo expresamente al responsable para su utilización, pudiendo ejercer sus derechos y revocar su consentimiento en cualquier momento, a través de solicitud a NC Desarrollos, S.L.</p>\r\n<p>Es posible que actualicemos la Política de Cookies de nuestro Sitio Web, por ello le recomendamos revisar esta política cada vez que acceda a nuestro Sitio Web con el objetivo de estar adecuadamente informado sobre cómo y para qué usamos las cookies</p>\r\n<p>La finalidad de las cookies es la de facilitar al Usuario un acceso más rápido a los Servicios seleccionados.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cookies utilizadas por NC Desarrollos</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><table style=\"height: 287px; width: 98.88%;\"><colgroup><col style=\"width: 16.6796%;\"><col style=\"width: 16.6796%;\"><col style=\"width: 38.7292%;\"><col style=\"width: 27.9078%;\"></colgroup>\r\n<thead>\r\n<tr>\r\n<td>\r\n<p><strong>Cookie</strong></p>\r\n</td>\r\n<td>\r\n<p><strong>Proveedor</strong></p>\r\n</td>\r\n<td>\r\n<p><strong>Descripción</strong></p>\r\n</td>\r\n<td>\r\n<p style=\"text-align: center;\"><strong>Tiempo de retención</strong></p>\r\n</td>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>_ga</p>\r\n</td>\r\n<td>\r\n<p>Google</p>\r\n</td>\r\n<td>\r\n<p>Registra una identificación única que se utiliza para generar datos estadísticos acerca de cómo utiliza el visitante el sitio web.</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>2 años</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>_ga_*</p>\r\n</td>\r\n<td>\r\n<p>Google</p>\r\n</td>\r\n<td>\r\n<p>Recopila datos sobre el número de veces que un usuario ha visitado el sitio web además de las fechas de la primera visita y de la más reciente. Utilizada por Google Analytics.</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>2 años</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>_gid</p>\r\n</td>\r\n<td>\r\n<p>Google</p>\r\n</td>\r\n<td>\r\n<p>Registra una identificación única que se utiliza para generar datos estadísticos acerca de cómo utiliza el visitante el sitio web. </p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>1 día</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>cookielaw</p>\r\n</td>\r\n<td>\r\n<p>NC Desarrollos</p>\r\n</td>\r\n<td>\r\n<p>Guarda el consentimiento de los visitantes en cuanto a materia de política de cookies.</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>Session</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p>prim_</p>\r\n</td>\r\n<td>\r\n<p>Active Campaign</p>\r\n</td>\r\n<td>\r\n<p>Traza el comportamiento de los visitantes procedentes de acciones realizadas con ActiveCampaign.</p>\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<p>1 año</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"JY6UWBH\"><p>Si usted no desea que se guarden cookies en su navegador o prefiere recibir una información cada vez que una cookie solicite instalarse, puede configurar sus opciones de navegación para que se haga de esa forma. La mayor parte de los navegadores permiten la gestión de las cookies de 3 formas diferentes:</p>\r\n<p>– Las cookies son siempre rechazadas;</p>\r\n<p>– El navegador pregunta si el usuario desea instalar cada cookie;</p>\r\n<p>– Las cookies son siempre aceptadas;</p>\r\n<p>– Su navegador también puede incluir la posibilidad de seleccionar con detalle las cookies que desea que se instalen en su ordenador. En concreto, el usuario puede normalmente aceptar alguna de las siguientes opciones:</p>\r\n<p>– Rechazar las cookies de determinados dominios;</p>\r\n<p>– Rechazar las cookies de terceros;</p>\r\n<p>– Aceptar cookies como no persistentes (se eliminan cuando el navegador se cierra);</p>\r\n<p>– permitir al servidor crear cookies para un dominio diferente.</p>\r\n<p> </p>\r\n<p>Para permitir, conocer, bloquear o eliminar las cookies instaladas en su equipo puede hacerlo mediante la configuración de las opciones del navegador instalado en su ordenador.</p>\r\n<p>Puede encontrar información sobre cómo configurar los navegadores más usados en las siguientes ubicaciones:</p>\r\n<p> </p>\r\n<p>• Internet Explorer: Herramientas -> Opciones de Internet -> Privacidad -> Configuración. Para más información, puede consultar el soporte de Microsoft o la Ayuda del navegador.</p>\r\n<p><a href=\"https://support.microsoft.com/es-es/help/278835/how-to-delete-cookie-files-in-internet-explorer\">https://support.microsoft.com/es-es/help/278835/how-to-delete-cookie-files-in-internet-explorer</a></p>\r\n<p> </p>\r\n<p>• Firefox: Herramientas -> Opciones -> Privacidad -> Historial -> Configuración Personalizada. Para más información, puede consultar el soporte de Mozilla o la Ayuda del navegador.</p>\r\n<p><a href=\"https://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-sitios-web-rastrear-preferencias\">https://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-sitios-web-rastrear-preferencias</a></p>\r\n<p> </p>\r\n<p>• Chrome: Configuración -> Mostrar opciones avanzadas -> Privacidad -> Configuración de contenido. Para más información, puede consultar el soporte de Google o la Ayuda del navegador.</p>\r\n<p><a href=\"https://support.google.com/chrome/answer/95647?co=GENIE.Platform%3DDesktop&hl=es\">https://support.google.com/chrome/answer/95647?co=GENIE.Platform%3DDesktop&hl=es</a></p>\r\n<p> </p>\r\n<p>• Safari: Preferencias -> Seguridad. Para más información, puede consultar el soporte de Apple o la Ayuda del navegador.</p>\r\n<p><a href=\"https://support.apple.com/es-es/guide/safari/sfri11471/mac\">https://support.apple.com/es-es/guide/safari/sfri11471/mac</a></p>\r\n<p> </p>\r\n<p> </p></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-06 12:58:59','2024-02-07 13:46:53',1,0,NULL,'','',NULL,NULL,NULL,NULL,'Política de Cookies NC Desarrollos'),(6,'Política de Privacidad','cms-full-width','Conector bidireccional Magento - SAP Business One','NC Desarrollos, S.L. garantiza la protección y confidencialidad de los datos personales, de cualquier tipo que nos proporcionen, de acuerdo con lo dispuesto en el Reglamento General de Protección de Datos de Carácter Personal.','politica-de-privacidad','','<style>#html-body [data-pb-style=EWLHPY9]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=FC5UBLL]{width:100%;border-width:0;border-color:#cecece;display:inline-block}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"EWLHPY9\"><h1 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Política de Privacidad</h1><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Información básica</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><table style=\"height: 186px; width: 93.3573%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Responsable</strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>NC Desarrollos, S.L.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Finalidad</strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>La atención de solicitudes de diversa índole por parte del Usuario o titulares de los datos (en adelante, “Usuario”)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Legitimación</strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>Consentimiento del interesado</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Destinatarios </strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>Los estrictamente necesarios para el desarrollo de la actividad. Administraciones y organismos públicos para el cumplimiento de obligaciones directamente exigibles a NC Desarrollos, S.L.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Derechos</strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>Acceder, Rectificar y Suprimir los Datos, así como otros derechos, como se explica en la Información Adicional</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 10.9709%;\">\r\n<p><strong>Información adicional</strong></p>\r\n</td>\r\n<td style=\"width: 89.0015%;\">\r\n<p>Consulte la Información Adicional y detallada sobre Protección de Datos.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Información adicional</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>NC Desarrollos, S.L. garantiza la protección y confidencialidad de los datos personales, de cualquier tipo que nos proporcionen, de acuerdo con lo dispuesto en el Reglamento General de Protección de Datos de Carácter Personal.</p>\r\n<p>En cumplimiento de lo dispuesto por la normativa vigente en materia de protección de datos, y en el contexto del nuevo marco normativo establecido en virtud de lo dispuesto en el Reglamento (UE) 2016/679 del Parlamento Europeo y del Consejo, de 27 de abril de 2016, relativo a la protección de las personas físicas en lo que respecta al tratamiento de datos personales y a la libre circulación de estos datos, y la normativa nacional en materia de protección de datos de carácter personal, le informamos de que los datos de carácter personal que Ud. nos proporciona, serán objeto de tratamiento por parte de NC Desarrollos, S.L., con domicilio social en Ctra. N-322. Km 359 – 02007 Albacete.</p>\r\n<p>Usted declara que la información y los datos que nos ha facilitado son exactos y veraces, reservándose el NC Desarrollos, S.L. el derecho de excluir de los servicios a aquellos interesados que hayan facilitado datos falsos, sin perjuicio de que se puedan iniciar acciones legales. Usted será el único responsable de las manifestaciones falsas o inexactas que realice y de los perjuicios que ello cause a NC Desarrollos, S.L. o a terceros.</p>\r\n<p>Todos los datos facilitados a NC Desarrollos, S.L. o a su personal, serán tratados bajo la responsabilidad de NC Desarrollos, S.L., imprescindibles para prestar los servicios solicitados por los usuarios.</p>\r\n<p>Los datos facilitados serán tratados en los términos establecidos en el Reglamento General de Protección de Datos de Carácter Personal, en este sentido NC Desarrollos, S.L. ha adoptado los niveles de protección que legalmente se exigen, y ha instalado todas las medidas técnicas a su alcance para evitar la pérdida, mal uso, alteración, acceso no autorizado por terceros. No obstante, el usuario debe ser consciente de que las medidas de seguridad en Internet no son inexpugnables. En caso en que considere oportuno que se cedan sus datos de carácter personal a otras entidades, el usuario será informado de los datos cedidos, de la finalidad del tratamiento y del nombre y dirección del cesionario, para que de su consentimiento inequívoco al respecto.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">¿Por cuánto tiempo conservaremos tus datos?</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Los datos personales a los que se tenga acceso en virtud de su relación con NC Desarrollos, S.L. se tratarán mientras resulten precisos para la gestión de las finalidades informadas. En este sentido, NC Desarrollos, S.L. conservará los datos personales una vez terminada su relación con Ud., debidamente bloqueados, durante el plazo de prescripción de las acciones que pudieran derivarse de la relación mantenida con el interesado.</p>\r\n<p>Una vez bloqueados, sus datos resultarán inaccesibles para NC Desarrollos, S.L., y no serán tratados por éste, excepto para su puesta a disposición a las Administraciones públicas, Jueces y Tribunales, para la atención de las posibles responsabilidades nacidas de los tratamientos, así como para el ejercicio y defensa de reclamaciones ante la <a href=\"https://www.aepd.es/\" target=\"_blank\" rel=\"noopener\">Agencia Española de Protección de Datos</a>.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Aceptación y consentimiento</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El usuario declara haber sido informado de las condiciones sobre protección de datos de carácter personal, aceptando y consintiendo el tratamiento de los mismos por parte de NC Desarrollos, S.L. en la forma y para las finalidades indicadas en esta política de privacidad.</p>\r\n<p>El consentimiento es revocable en cualquier momento comunicándolo a NC Desarrollos, S.L. en los términos establecidos en esta Política para el ejercicio de sus derechos. Esta revocación en ningún caso tendrá carácter retroactivo.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cambios en la política de privacidad</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>NC Desarrollos, S.L. se reserva el derecho a modificar la presente política para adaptarla a novedades legislativas o jurisprudenciales.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">¿Cuáles son los derechos del Usuario cuando nos facilita sus datos personales?</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El Usuario tiene derecho a obtener confirmación sobre si NC Desarrollos, S.L. trata datos personales que le conciernen, así como a acceder a sus datos personales, solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.</p>\r\n<p>En determinadas circunstancias, el Usuario podrá solicitar la limitación del tratamiento de sus datos, en cuyo caso únicamente se conservarán para el ejercicio o la defensa de reclamaciones.</p>\r\n<p>En determinadas circunstancias y por motivos relacionados con su situación particular, el Usuario podrá oponerse al tratamiento de sus datos. NC Desarrollos, S.L. cesará en el tratamiento de los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">¿Ante que autoridad puede ejercitar sus reclamaciones?</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Ud. podrá presentar una reclamación NC Desarrollos, S.L., con el fin de que podamos satisfacer sus derechos en esta materia. En cualquier caso, Ud. siempre podrá acudir a la Agencia Española de Protección de Datos en la C/ Jorge Juan número 6, Madrid como autoridad de control en materia de protección de datos.</p>\r\n<p>En cumplimiento de lo establecido en el RGPD, el usuario podrá ejercer sus derechos de acceso, rectificación, cancelación/supresión, oposición, limitación o portabilidad. Para ello debe de contactar con nosotros en Calle Blasco Ibáñez, 17 – 02007 Albacete.</p>\r\n<p>Con objeto de garantizar el cumplimiento de la normativa sobre protección de datos de carácter personal, NC Desarrollos, S.L. ha recibido los servicios de consultoría y asesoramiento por parte de <a href=\"http://www.clickdatos.es/\">www.clickdatos.es</a></p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"FC5UBLL\"></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-07 13:16:23','2024-02-07 13:19:44',1,0,NULL,'','',NULL,NULL,NULL,NULL,'Política de Privacidad NC Desarrollos'),(7,'Aviso legal','cms-full-width','Magento 2 SAP Integration','En el presente Aviso Legal, el Usuario puede encontrar toda la información relativa a las condiciones legales que definen las relaciones entre los usuarios y el responsable de la página web accesible en la dirección URL: https://ncdesarrollos.es/ (en adelante, el «sitio web», que NC Desarrollos, S.L. pone a disposición de los usuarios de Internet.','aviso-legal','','<style>#html-body [data-pb-style=SHHB9TQ],#html-body [data-pb-style=UT3QLS7]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=SHHB9TQ]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=UT3QLS7]{align-self:stretch}#html-body [data-pb-style=Q7LTR6E]{display:flex;width:100%}#html-body [data-pb-style=WXSOHBK]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;padding:20px;align-self:stretch}#html-body [data-pb-style=PC50AE0]{border-style:none}#html-body [data-pb-style=O3JO8F7],#html-body [data-pb-style=S0Q9P5Q]{max-width:100%;height:auto}#html-body [data-pb-style=TSE33NA]{justify-content:center;display:flex;flex-direction:column;width:75%;padding-left:25px}#html-body [data-pb-style=ER5H5OM],#html-body [data-pb-style=TSE33NA]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=J6M8F6K]{display:flex;width:100%}#html-body [data-pb-style=QQS4QDX],#html-body [data-pb-style=QXFJ4MA]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=QXFJ4MA]{width:50%}#html-body [data-pb-style=A955TD5]{text-align:center;border-style:none}#html-body [data-pb-style=HN1RADA],#html-body [data-pb-style=K6JSBF6]{max-width:100%;height:auto}#html-body [data-pb-style=ST4P7KG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=WS0EQUG]{width:100%;border-width:0;border-color:#cecece;display:inline-block}@media only screen and (max-width: 768px) { #html-body [data-pb-style=A955TD5],#html-body [data-pb-style=PC50AE0]{border-style:none} }</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"SHHB9TQ\"><h1 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Aviso legal</h1><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"UT3QLS7\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"Q7LTR6E\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"WXSOHBK\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"PC50AE0\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"O3JO8F7\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/Logo_PNG.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"S0Q9P5Q\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"TSE33NA\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div class=\"wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<p>En el presente Aviso Legal, el Usuario puede encontrar toda la información relativa a las condiciones legales que definen las relaciones entre los usuarios y el responsable de la página web accesible en la dirección URL: https://ncdesarrollos.es/ (en adelante, el «sitio web», que NC Desarrollos, S.L. pone a disposición de los usuarios de Internet.</p>\r\n</div>\r\n</div>\r\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<p>El uso del sitio web implica la aceptación plena y sin reservas de todas y cada una de las disposiciones incluidas en este Aviso Legal. En consecuencia, el usuario del sitio web debe leer atentamente el presente Aviso Legal en cada una de las ocasiones en que se proponga utilizar la web, ya que el texto podría sufrir modificaciones a criterio del titular de la web, o a causa de un cambio legislativo, jurisprudencial o en la práctica empresarial.</p>\r\n</div>\r\n</div></div></div></div></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Datos del responsable titular del sitio web</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><table style=\"height: 142px; width: 78%;\"><colgroup><col style=\"width: 49.9846%;\"><col style=\"width: 49.9846%;\"></colgroup>\r\n<thead>\r\n<tr>\r\n<td>\r\n<p><strong>Nombre del titular</strong></p>\r\n</td>\r\n<td>\r\n<p>NC Desarrollos S.L.</p>\r\n</td>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p><strong>Domicilio social</strong></p>\r\n</td>\r\n<td>\r\n<p>Calle Blasco Ibáñez, 17 02004 (Albacete)</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><strong>C.I.F.</strong></p>\r\n</td>\r\n<td>\r\n<p>B44613321</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><strong>Teléfono de contacto</strong></p>\r\n</td>\r\n<td>\r\n<p>679 611 141</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<p><strong>Correo electrónico</strong></p>\r\n</td>\r\n<td>proyectos@ncdesarrollos.es</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<p>NC Desarrollos, S.L. es el responsable del Sitio Web y se compromete a cumplir con todos los requisitos nacionales y europeos que regulan el uso de los datos personales de los usuarios.</p>\r\n<p>Este Sitio Web garantiza la protección y confidencialidad de los datos personales que nos proporcionen de acuerdo a lo dispuesto en el Reglamento General de Protección de Datos de Carácter Personal (UE) 2016/679 del Parlamento Europeo y del Consejo, de 27 de abril de 2016 y la Ley de la Sociedad de la Información y Comercio Electrónico 34/2002 de 11 de julio (LSSI-CE).</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Objeto</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El Sitio Web facilita a los usuarios del mismo el acceso a información y servicios prestados por NC Desarrollos, S.L. a aquellas personas u organizaciones interesadas en los mismos.</p>\r\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<p class=\"has-text-align-left\">El acceso y la utilización del Sitio Web atribuyen la condición de usuario del Sitio Web (en adelante, el usuario) e implican la aceptación de todas las condiciones incluidas en este Aviso Legal, así como de sus modificaciones. La prestación del servicio del Sitio Web tiene una duración limitada al momento en el que el Usuario se encuentre conectado al Sitio Web o a alguno de los servicios que a través del mismo se facilitan.</p>\r\n</div>\r\n</div>\r\n<p>Por tanto, el Usuario debe leer atentamente el presenta Aviso Legal en cada una de las ocasiones en que se proponga utilizar el Sitio Web, ya que éste y sus condiciones de uso recogidas en el presente Aviso Legal pueden sufrir modificaciones.</p></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"ER5H5OM\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"J6M8F6K\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"QQS4QDX\"></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"QXFJ4MA\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"A955TD5\"><img class=\"pagebuilder-mobile-hidden\" src=\"{{media url=wysiwyg/NC_Desarrollos_logo2.png}}\" alt=\"\" title=\"\" data-element=\"desktop_image\" data-pb-style=\"K6JSBF6\"><img class=\"pagebuilder-mobile-only\" src=\"{{media url=wysiwyg/NC_Desarrollos_logo2.png}}\" alt=\"\" title=\"\" data-element=\"mobile_image\" data-pb-style=\"HN1RADA\"></figure></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"ST4P7KG\"></div></div></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Acceso y utilización de la web</h2><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Carácter gratuito del acceso y la utilización</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El acceso a la web tiene carácter gratuito para los usuarios de la misma, salvo en lo relativo al coste de la conexión a través de la red de telecomunicaciones suministrada por el proveedor de acceso contratado por los usuarios.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Registro de usuarios</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Con carácter general el acceso y la utilización de la web no exige la previa suscripción o registro de los usuarios de la misma.</p></div><h3 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Datos personales facilitados</h3><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Los usuarios garantizan y responden, en cualquier caso, de la exactitud, vigencia y autenticidad de los datos personales facilitados, y se comprometen a mantenerlos debidamente actualizados. El usuario acepta proporcionar información completa y correcta en el formulario de contacto o suscripción.</p>\r\n<p>En el caso de los menores de trece años se requiere el consentimiento de los padres o tutores para el tratamiento de sus datos personales.</p>\r\n<p>En ningún caso se recabarán del menor de edad datos relativos a la situación profesional, económica o a la intimidad de los otros miembros de la familia, sin consentimiento de éstos. Si eres menor de trece años y has accedido a este sitio web sin avisar a tus padres no debes registrarte como usuario.</p>\r\n<p>En esta web se respetan y cuidan los datos personales de los usuarios. Como usuarios debes saber que tus derechos están garantizados.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Contenidos de la web</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El idioma utilizado por el titular de la web será el castellano. NC Desarrollos, S.L. no se responsabiliza de la no comprensión o entendimiento del idioma de la web por el usuario, ni de sus consecuencias.</p>\r\n<p>NC Desarrollos, S.L. podrá modificar los contenidos sin previo aviso, así como suprimir y cambiar éstos dentro de la web, como la forma en que se accede a éstos, sin justificación alguna y libremente, no responsabilizándose de las consecuencias que los mismos puedan ocasionar a los usuarios.</p>\r\n<p>Se prohíbe el uso de los contenidos de la web para promocionar, contratar o divulgar publicidad o información propia o de terceras personas sin la autorización de NC Desarrollos, S.L., ni remitir publicidad o información valiéndose para ello de los servicios o información que se ponen a disposición de los usuarios, independientemente de si la utilización es gratuita o no.</p>\r\n<p>Los enlaces o hiperenlaces que incorporen terceros en sus páginas web, dirigidos a esta web, serán para la apertura de la página web completa, no pudiendo manifestar, directa o indirectamente, indicaciones falsas, inexactas o confusas, ni incurrir en acciones desleales o ilícitas en contra de NC Desarrollos, S.L.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Medidas de seguridad</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Los datos personales comunicados por el usuario podrán ser almacenados en bases de datos automatizadas o no, cuya titularidad corresponden en exclusiva a NC Desarrollos, S.L., asumiendo todas las medidas de índole técnica, organizativa y de seguridad que garanticen la confidencialidad, integridad y calidad de la información contenida en las mismas de acuerdo con lo establecido en las normativas vigentes en materia de protección de datos de carácter personal.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Limitación de responsabilidad</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Tanto el acceso a la web como el uso no consentido que pueda efectuarse de la información contenida en la misma es de la exclusiva responsabilidad de quien lo realiza. NC Desarrollos, S.L. no responderá de ninguna consecuencia, daño o perjuicio que pudieran derivarse de dicho acceso o uso. NC Desarrollos, S.L. no se hace responsable de los errores de seguridad, que se puedan producir ni de los daños que puedan causarse al sistema informático del usuario (hardware y software), o a los ficheros o documentos almacenados en el mismo, como consecuencia de:</p>\r\n<ul>\r\n<li>La presencia de un virus en el ordenador del usuario que sea utilizado para la conexión a los servicios y contenidos de la web.</li>\r\n<li>Un mal funcionamiento del navegador</li>\r\n<li>Y/o del uso de versiones no actualizadas del mismo</li>\r\n</ul>\r\n<p>NC Desarrollos, S.L. no se hace responsable de la fiabilidad y rapidez de los hiperenlaces que se incorporen en la web para la apertura de otras. NC Desarrollos, S.L. no garantiza la utilidad de estos enlaces, ni se responsabiliza de los contenidos o servicios a los que pueda acceder el usuario por medio de estos enlaces, ni del buen funcionamiento de estas webs.</p>\r\n<p>NC Desarrollos, S.L. no será responsable de los virus o demás programas informáticos que deterioren o puedan deteriorar los sistemas o equipos informáticos de los usuarios al acceder a su web u otras webs a las que se haya accedido mediante enlaces de esta web.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Empleo tecnología «cookie»</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El Sitio Web puede emplear cookies o tecnologías similares que se regirán por lo establecido en la Política de Cookies, accesible en todo momento y respetando la confidencialidad e intimidad del usuario, siendo parte integrante del presente Aviso Legal.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Navegación</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Los servidores de Internet pueden recoger datos no identificables, que puedan incluir, direcciones IP, y otros datos que no pueden ser utilizados para identificar al usuario.</p>\r\n<p>Su dirección IP se almacenará en los logs de acceso de forma automática y con la única finalidad de permitir el tránsito por Internet, siendo necesario que su equipo facilite esta dirección IP cuando navega por Internet para que las comunicaciones puedan realizarse.</p>\r\n<p>Así mismo, la dirección IP podrá ser utilizada para realizar estadísticas sobre el número de visitantes de esta web y su procedencia, de forma totalmente transparente a su navegación.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Propiedad intelectual e industrial</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El usuario conoce y acepta que todos los contenidos y/o cualesquiera otros elementos del sitio web son propiedad de NC Desarrollos, S.L., y se compromete a respetar los derechos de propiedad intelectual e industrial titularidad de NC Desarrollos, S.L. y/o de terceros. Cualquier uso de la web o sus contenidos deberá tener un carácter exclusivamente particular</p>\r\n<p>Está reservado exclusivamente a NC Desarrollos, S.L., cualquier otro uso que suponga la copia, reproducción, distribución, transformación, comunicación pública o cualquier otra acción similar, de todo o parte de los contenidos de la web, por lo que ningún usuario podrá llevar a cabo estas acciones sin la autorización previa y por escrito de NC Desarrollos, S.L..</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Legislación aplicable y jurisdicción competente</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>El presente Aviso Legal se interpretará y regirá de conformidad con la legislación española. NC Desarrollos, S.L. y los usuarios, con renuncia expresa a cualquier otro fuero que pudiera corresponderles, se someten al de los juzgados y tribunales del domicilio del usuario para cualquier controversia que pudiera derivarse del acceso o uso de la web.</p>\r\n<p>En el caso de que el usuario tenga su domicilio fuera de España, NC Desarrollos, S.L. y el usuario, se someten, con renuncia expresa a cualquier otro fuero, a los juzgados y tribunales del domicilio de Albacete.</p></div><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"WS0EQUG\"></div></div></div><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"1\" type_name=\"CMS Static Block\"}}</div>','2024-02-07 13:32:16','2024-02-07 13:44:24',1,0,NULL,'','',NULL,NULL,NULL,NULL,'Aviso legal - NC Desarrollos'); /*!40000 ALTER TABLE `cms_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_page_store` -- DROP TABLE IF EXISTS `cms_page_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_page_store` ( `page_id` smallint NOT NULL COMMENT 'Entity ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`page_id`,`store_id`), KEY `CMS_PAGE_STORE_STORE_ID` (`store_id`), CONSTRAINT `CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='CMS Page To Store Linkage Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_page_store` -- LOCK TABLES `cms_page_store` WRITE; /*!40000 ALTER TABLE `cms_page_store` DISABLE KEYS */; INSERT INTO `cms_page_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,0); /*!40000 ALTER TABLE `cms_page_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_config_data` -- DROP TABLE IF EXISTS `core_config_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `core_config_data` ( `config_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config ID', `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope', `scope_id` int 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 `CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`) ) ENGINE=InnoDB AUTO_INCREMENT=321 DEFAULT CHARSET=utf8mb3 COMMENT='Config Data'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `core_config_data` -- LOCK TABLES `core_config_data` WRITE; /*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */; INSERT INTO `core_config_data` VALUES (1,'default',0,'catalog/search/engine','elasticsearch7','2023-12-19 06:17:54'),(2,'default',0,'catalog/search/elasticsearch7_server_hostname','localhost','2023-12-19 06:17:54'),(3,'default',0,'catalog/search/elasticsearch7_server_port','9200','2023-12-19 06:17:54'),(4,'default',0,'catalog/search/elasticsearch7_index_prefix','demo','2023-12-19 06:17:54'),(5,'default',0,'catalog/search/elasticsearch7_server_timeout','15','2023-12-19 06:17:54'),(6,'default',0,'web/seo/use_rewrites','1','2023-12-19 06:17:54'),(7,'default',0,'web/unsecure/base_url','https://nc.ncdesarrollos.com/','2024-01-09 08:25:12'),(8,'default',0,'general/locale/code','es_ES','2023-12-19 06:17:54'),(9,'default',0,'general/locale/timezone','Europe/Madrid','2023-12-19 06:17:54'),(10,'default',0,'currency/options/base','EUR','2023-12-19 06:17:54'),(11,'default',0,'currency/options/default','EUR','2023-12-19 06:17:54'),(12,'default',0,'currency/options/allow','EUR','2023-12-19 06:17:54'),(13,'default',0,'general/region/display_all','1','2023-12-19 06:17:55'),(14,'default',0,'general/region/state_required','AL,AR,AU,BY,BO,BR,BG,CA,CZ,CL,CN,CO,CR,HR,DK,EC,ES,US,EE,GR,GY,IN,IS,IT,LV,LT,MX,PY,PE,PL,PT,RO,SE,CH,SR,UA,UY,VE','2024-03-14 06:11:20'),(15,'default',0,'catalog/category/root_id','2','2023-12-19 06:17:59'),(16,'default',0,'analytics/subscription/enabled','1','2023-12-19 06:18:00'),(18,'default',0,'crontab/default/jobs/analytics_collect_data/schedule/cron_expr','00 02 * * *','2023-12-19 06:18:00'),(19,'default',0,'admin/usage/enabled','0','2023-12-19 06:29:28'),(20,'default',0,'analytics/general/token','eZrlrMn4kowzGdwN6Z_1aizYP2G6hpHMdSq72tgMT07NUeRDn3crSTq8hYmkRI08glLc5L5GIcqC5hyzFO-wnQ','2024-01-10 02:00:09'),(21,'default',0,'mageplaza/general/notice_enable','0','2023-12-19 07:12:51'),(22,'default',0,'mageplaza/general/notice_type','announcement,new_update,marketing','2023-12-19 07:09:32'),(23,'default',0,'mageplaza/general/menu','0','2023-12-19 07:10:04'),(24,'default',0,'customer/online_customers/online_minutes_interval',NULL,'2023-12-19 07:13:48'),(25,'default',0,'customer/online_customers/section_data_lifetime','60','2023-12-19 07:13:48'),(26,'default',0,'customer/address/street_lines','4','2024-03-11 09:54:01'),(27,'default',0,'customer/address/telephone_show','opt','2023-12-19 07:15:20'),(28,'default',0,'admin/url/use_custom_path','1','2023-12-19 07:19:57'),(29,'default',0,'admin/url/custom_path','panel','2023-12-19 07:19:57'),(30,'default',0,'system/full_page_cache/varnish/access_list','localhost','2023-12-19 07:24:43'),(31,'default',0,'system/full_page_cache/varnish/backend_host','localhost','2023-12-19 07:24:43'),(32,'default',0,'system/full_page_cache/varnish/backend_port','8080','2023-12-19 07:24:43'),(33,'default',0,'system/full_page_cache/varnish/grace_period','300','2023-12-19 07:24:43'),(34,'default',0,'system/mysqlmq/successful_messages_lifetime','10080','2023-12-19 07:26:04'),(35,'default',0,'system/mysqlmq/retry_inprogress_after','1440','2023-12-19 07:26:04'),(36,'default',0,'system/mysqlmq/failed_messages_lifetime','10080','2023-12-19 07:26:04'),(37,'default',0,'system/mysqlmq/new_messages_lifetime','10080','2023-12-19 07:26:04'),(38,'default',0,'system/smtp/disable','0','2024-03-14 09:01:37'),(39,'default',0,'system/backup/functionality_enabled','0','2023-12-19 07:26:04'),(40,'default',0,'system/bulk/lifetime','60','2023-12-19 07:26:04'),(41,'default',0,'system/media_storage_configuration/media_storage','0','2023-12-19 07:26:04'),(42,'default',0,'system/media_gallery/enabled','1','2023-12-19 07:26:04'),(43,'default',0,'system/media_gallery_renditions/enabled','0','2023-12-19 07:26:56'),(44,'default',0,'system/media_gallery_renditions/width','1000','2023-12-19 07:26:04'),(45,'default',0,'system/media_gallery_renditions/height','1000','2023-12-19 07:26:04'),(46,'default',0,'system/upload_configuration/jpeg_quality','100','2023-12-19 07:26:56'),(47,'default',0,'system/upload_configuration/enable_resize','0','2023-12-19 07:26:56'),(48,'default',0,'design/pagination/pagination_frame','5','2023-12-19 07:29:21'),(49,'default',0,'design/pagination/pagination_frame_skip',NULL,'2023-12-19 07:29:22'),(50,'default',0,'design/pagination/anchor_text_for_previous',NULL,'2023-12-19 07:29:22'),(51,'default',0,'design/pagination/anchor_text_for_next',NULL,'2023-12-19 07:29:22'),(52,'default',0,'design/head/default_title','Magento Commerce','2023-12-19 07:29:22'),(53,'default',0,'design/head/title_prefix',NULL,'2023-12-19 07:29:22'),(54,'default',0,'design/head/title_suffix',NULL,'2023-12-19 07:29:22'),(55,'default',0,'design/head/default_description',NULL,'2023-12-19 07:29:22'),(56,'default',0,'design/head/default_keywords',NULL,'2023-12-19 07:29:22'),(57,'default',0,'design/head/includes',NULL,'2023-12-19 07:29:22'),(58,'default',0,'design/head/demonotice','0','2023-12-19 07:29:22'),(59,'default',0,'design/header/logo_width',NULL,'2023-12-19 07:29:22'),(60,'default',0,'design/header/logo_height',NULL,'2023-12-19 07:29:22'),(61,'default',0,'design/header/logo_alt',NULL,'2023-12-19 07:29:22'),(62,'default',0,'design/header/welcome','Default welcome msg!','2023-12-19 07:29:22'),(63,'default',0,'design/header/translate_title','1','2023-12-19 07:29:22'),(64,'default',0,'design/footer/copyright','Copyright © 2013-present Magento, Inc. All rights reserved.','2023-12-19 07:29:22'),(65,'default',0,'design/footer/absolute_footer',NULL,'2023-12-19 07:29:22'),(66,'default',0,'design/footer/report_bugs','1','2023-12-19 07:29:22'),(67,'default',0,'design/search_engine_robots/default_robots','INDEX,FOLLOW','2023-12-19 07:29:22'),(68,'default',0,'design/search_engine_robots/custom_instructions',NULL,'2023-12-19 07:29:22'),(69,'default',0,'design/watermark/image_size',NULL,'2023-12-19 07:29:22'),(70,'default',0,'design/watermark/image_imageOpacity',NULL,'2023-12-19 07:29:22'),(71,'default',0,'design/watermark/image_position','stretch','2023-12-19 07:29:22'),(72,'default',0,'design/watermark/small_image_size',NULL,'2023-12-19 07:29:22'),(73,'default',0,'design/watermark/small_image_imageOpacity',NULL,'2023-12-19 07:29:22'),(74,'default',0,'design/watermark/small_image_position','stretch','2023-12-19 07:29:22'),(75,'default',0,'design/watermark/thumbnail_size',NULL,'2023-12-19 07:29:22'),(76,'default',0,'design/watermark/thumbnail_imageOpacity',NULL,'2023-12-19 07:29:22'),(77,'default',0,'design/watermark/thumbnail_position','stretch','2023-12-19 07:29:22'),(78,'default',0,'design/email/logo_alt',NULL,'2023-12-19 07:29:22'),(79,'default',0,'design/email/logo_width',NULL,'2023-12-19 07:29:22'),(80,'default',0,'design/email/logo_height',NULL,'2023-12-19 07:29:22'),(81,'default',0,'design/email/header_template','design_email_header_template','2023-12-19 07:29:22'),(82,'default',0,'design/email/footer_template','design_email_footer_template','2023-12-19 07:29:22'),(83,'default',0,'design/theme/theme_id','3','2023-12-19 07:40:57'),(84,'default',0,'catalog/productalert_cron/frequency','D','2023-12-19 08:35:54'),(85,'default',0,'crontab/default/jobs/catalog_product_alert/schedule/cron_expr','0 0 * * *','2023-12-19 08:35:54'),(86,'default',0,'crontab/default/jobs/catalog_product_alert/run/model',NULL,'2023-12-19 08:35:54'),(87,'default',0,'catalog/productalert_cron/time','00,00,00','2023-12-19 08:35:54'),(88,'default',0,'catalog/productalert_cron/error_email',NULL,'2023-12-19 08:35:54'),(89,'default',0,'catalog/product_video/youtube_api_key',NULL,'2023-12-19 08:35:54'),(90,'default',0,'catalog/price/scope','0','2023-12-19 08:35:54'),(91,'default',0,'catalog/search/elasticsearch7_enable_auth','0','2023-12-19 08:35:54'),(92,'default',0,'catalog/search/elasticsearch7_minimum_should_match',NULL,'2023-12-19 08:35:54'),(93,'default',0,'catalog/custom_options/use_calendar','0','2023-12-19 08:35:54'),(94,'default',0,'catalog/custom_options/year_range',',','2023-12-19 08:35:54'),(95,'default',0,'catalog/available/hide_add_to_cart','0','2023-12-19 08:35:54'),(96,'default',0,'catalog/available/hide_add_to_cart_groups',NULL,'2023-12-19 08:35:54'),(97,'default',0,'catalog/available/hide_price','0','2023-12-19 08:35:54'),(98,'default',0,'catalog/available/hide_price_groups',NULL,'2023-12-19 08:35:54'),(99,'default',0,'catalog/placeholder/image_placeholder',NULL,'2023-12-19 08:35:54'),(100,'default',0,'catalog/placeholder/small_image_placeholder',NULL,'2023-12-19 08:35:54'),(101,'default',0,'catalog/placeholder/thumbnail_placeholder',NULL,'2023-12-19 08:35:54'),(102,'default',0,'catalog/placeholder/swatch_image_placeholder',NULL,'2023-12-19 08:35:54'),(104,'stores',1,'design/footer/copyright','Copyright © 2024 NC Desarrollos. Todos los derechos reservados.','2024-02-12 08:50:46'),(105,'stores',1,'design/head/default_title','NC Desarrollos','2024-02-12 08:51:45'),(106,'stores',1,'design/head/shortcut_icon','stores/1/flaticon.png','2024-02-12 08:58:23'),(107,'stores',1,'design/header/logo_src','stores/1/Logo_PNG.png','2024-02-12 08:59:39'),(108,'default',0,'general/country/default','ES','2024-03-14 06:11:20'),(109,'default',0,'general/country/destinations','ES','2024-03-14 06:11:20'),(110,'default',0,'general/locale/weight_unit','kgs','2024-03-14 06:11:20'),(111,'default',0,'general/locale/firstday','1','2024-03-14 06:11:20'),(112,'default',0,'general/store_information/name','NC Desarrollos','2024-03-14 06:11:20'),(113,'default',0,'general/store_information/phone','679 611 171','2024-03-14 06:11:20'),(114,'default',0,'general/store_information/hours','De 07:00 a 15:00 Horas','2024-03-14 06:11:20'),(115,'default',0,'general/store_information/country_id','ES','2024-03-14 06:11:20'),(116,'default',0,'general/store_information/region_id','132','2024-03-14 06:11:20'),(117,'default',0,'general/store_information/postcode','02004','2024-03-14 06:11:20'),(118,'default',0,'general/store_information/city','Albacete','2024-03-14 06:11:20'),(119,'default',0,'general/store_information/street_line1','C/Blasco Ibáñez, 17','2024-03-14 06:11:20'),(120,'default',0,'general/store_information/street_line2',NULL,'2024-03-14 06:11:20'),(121,'default',0,'general/store_information/merchant_vat_number',NULL,'2024-03-14 06:11:20'),(122,'default',0,'general/single_store_mode/enabled','0','2024-03-14 06:11:20'),(123,'default',0,'currency/fixerio/api_key',NULL,'2024-03-14 06:20:38'),(124,'default',0,'currency/fixerio/timeout','100','2024-03-14 06:20:38'),(125,'default',0,'currency/fixerio_apilayer/api_key',NULL,'2024-03-14 06:20:38'),(126,'default',0,'currency/fixerio_apilayer/timeout','100','2024-03-14 06:20:38'),(127,'default',0,'currency/currencyconverterapi/api_key',NULL,'2024-03-14 06:20:38'),(128,'default',0,'currency/currencyconverterapi/timeout','100','2024-03-14 06:20:38'),(129,'default',0,'trans_email/ident_general/name','Contacto','2024-03-14 06:25:33'),(130,'default',0,'trans_email/ident_general/email','proyectos@ncdesarrollos.es','2024-03-14 06:25:33'),(131,'default',0,'trans_email/ident_sales/name','Ventas','2024-03-14 06:25:33'),(132,'default',0,'trans_email/ident_sales/email','proyectos@ncdesarrollos.es','2024-03-14 06:25:33'),(133,'default',0,'trans_email/ident_support/name','Soporte','2024-03-14 06:25:33'),(134,'default',0,'trans_email/ident_support/email','proyectos@ncdesarrollos.es','2024-03-14 06:25:33'),(135,'default',0,'trans_email/ident_custom1/name','Personalizado 1','2024-03-14 06:25:33'),(136,'default',0,'trans_email/ident_custom1/email','proyectos@ncdesarrollos.es','2024-03-14 06:25:33'),(137,'default',0,'trans_email/ident_custom2/name','Personalizado 2','2024-03-14 06:25:33'),(138,'default',0,'trans_email/ident_custom2/email','proyectos@ncdesarrollos.es','2024-03-14 06:25:33'),(139,'default',0,'contact/email/recipient_email','proyectos@ncdesarrollos.es','2024-03-14 06:30:21'),(140,'default',0,'contact/email/sender_email_identity','general','2024-03-14 06:30:21'),(141,'default',0,'catalog/review/active','0','2024-03-14 08:22:39'),(142,'default',0,'cataloginventory/options/can_subtract','0','2024-03-14 08:24:59'),(143,'default',0,'cataloginventory/options/can_back_in_stock','0','2024-03-14 08:24:59'),(144,'default',0,'cataloginventory/options/show_out_of_stock','1','2024-03-14 08:24:59'),(145,'default',0,'cataloginventory/options/display_product_stock_status','0','2024-03-14 08:24:59'),(146,'default',0,'cataloginventory/options/enable_inventory_check','0','2024-03-14 08:24:59'),(147,'default',0,'cataloginventory/item_options/manage_stock','0','2024-03-14 08:24:59'),(148,'default',0,'cataloginventory/item_options/notify_stock_qty',NULL,'2024-03-14 08:24:59'),(149,'default',0,'customer/create_account/confirm','1','2024-03-14 08:30:57'),(150,'default',0,'customer/account_information/confirm','1','2024-03-14 08:30:57'),(151,'default',0,'customer/captcha/forms','user_login,user_forgotpassword,contact_us','2024-03-14 08:30:57'),(152,'default',0,'sales/identity/address',NULL,'2024-03-14 08:47:30'),(153,'default',0,'sales/identity/logo','default/Logo_PNG.png','2024-03-14 08:47:30'),(154,'default',0,'sales/identity/logo_html','default/Logo_PNG.png','2024-03-14 08:47:30'),(155,'default',0,'sales/minimum_order/active','0','2024-03-14 08:47:30'),(156,'default',0,'sales/minimum_order/amount',NULL,'2024-03-14 08:47:30'),(157,'default',0,'sales/minimum_order/description',NULL,'2024-03-14 08:47:30'),(158,'default',0,'sales/minimum_order/error_message',NULL,'2024-03-14 08:47:30'),(159,'default',0,'sales/minimum_order/multi_address','0','2024-03-14 08:47:30'),(160,'default',0,'sales/minimum_order/multi_address_description',NULL,'2024-03-14 08:47:30'),(161,'default',0,'sales/minimum_order/multi_address_error_message','The current cart does not match multi shipping criteria, please review or contact the store administrator','2024-03-14 08:47:30'),(162,'default',0,'sales_email/order/copy_to','proyectos@ncdesarrollos.es','2024-03-14 08:48:56'),(163,'default',0,'sales_email/order_comment/copy_to',NULL,'2024-03-14 08:48:56'),(164,'default',0,'sales_email/invoice/copy_to',NULL,'2024-03-14 08:48:56'),(165,'default',0,'sales_email/invoice_comment/copy_to',NULL,'2024-03-14 08:48:56'),(166,'default',0,'sales_email/shipment/copy_to',NULL,'2024-03-14 08:48:56'),(167,'default',0,'sales_email/shipment_comment/copy_to',NULL,'2024-03-14 08:48:56'),(168,'default',0,'sales_email/creditmemo/copy_to',NULL,'2024-03-14 08:48:56'),(169,'default',0,'sales_email/creditmemo_comment/copy_to',NULL,'2024-03-14 08:48:56'),(170,'default',0,'tax/calculation/cross_border_trade_enabled','0','2024-03-14 08:52:15'),(171,'default',0,'tax/defaults/country','ES','2024-03-14 08:52:15'),(172,'default',0,'tax/defaults/region','132','2024-03-14 08:52:15'),(173,'default',0,'tax/defaults/postcode','02004','2024-03-14 08:52:15'),(174,'default',0,'checkout/payment_failed/copy_to','proyectos@ncdesarrollos.es','2024-03-14 08:53:57'),(175,'default',0,'checkout/payment_failed/copy_method','bcc','2024-03-14 08:53:57'),(176,'default',0,'shipping/origin/country_id','ES','2024-03-14 08:54:39'),(177,'default',0,'shipping/origin/region_id','132','2024-03-14 08:54:39'),(178,'default',0,'shipping/origin/postcode','02004','2024-03-14 08:54:39'),(179,'default',0,'shipping/origin/city','Albacete','2024-03-14 08:54:39'),(180,'default',0,'shipping/origin/street_line1',NULL,'2024-03-14 08:54:39'),(181,'default',0,'shipping/origin/street_line2',NULL,'2024-03-14 08:54:39'),(182,'default',0,'shipping/shipping_policy/shipping_policy_content',NULL,'2024-03-14 08:54:39'),(183,'default',0,'carriers/flatrate/active','0','2024-03-14 08:55:28'),(184,'default',0,'carriers/flatrate/handling_fee',NULL,'2024-03-14 08:55:28'),(185,'default',0,'carriers/flatrate/specificcountry',NULL,'2024-03-14 08:55:28'),(186,'default',0,'carriers/flatrate/showmethod','0','2024-03-14 08:55:28'),(187,'default',0,'carriers/flatrate/sort_order',NULL,'2024-03-14 08:55:28'),(188,'default',0,'carriers/freeshipping/active','1','2024-03-14 08:55:28'),(189,'default',0,'carriers/freeshipping/free_shipping_subtotal',NULL,'2024-03-14 08:55:28'),(190,'default',0,'carriers/freeshipping/specificcountry',NULL,'2024-03-14 08:55:28'),(191,'default',0,'carriers/freeshipping/showmethod','0','2024-03-14 08:55:28'),(192,'default',0,'carriers/freeshipping/sort_order',NULL,'2024-03-14 08:55:28'),(193,'default',0,'carriers/tablerate/handling_fee',NULL,'2024-03-14 08:55:28'),(194,'default',0,'carriers/tablerate/specificcountry',NULL,'2024-03-14 08:55:28'),(195,'default',0,'carriers/tablerate/showmethod','0','2024-03-14 08:55:28'),(196,'default',0,'carriers/tablerate/sort_order',NULL,'2024-03-14 08:55:28'),(197,'default',0,'carriers/ups/shipper_number',NULL,'2024-03-14 08:55:28'),(198,'default',0,'carriers/ups/handling_fee',NULL,'2024-03-14 08:55:28'),(199,'default',0,'carriers/ups/free_shipping_enable','0','2024-03-14 08:55:28'),(200,'default',0,'carriers/ups/specificcountry',NULL,'2024-03-14 08:55:28'),(201,'default',0,'carriers/ups/showmethod','0','2024-03-14 08:55:28'),(202,'default',0,'carriers/ups/debug','0','2024-03-14 08:55:28'),(203,'default',0,'carriers/ups/sort_order',NULL,'2024-03-14 08:55:28'),(204,'default',0,'carriers/usps/userid',NULL,'2024-03-14 08:55:28'),(205,'default',0,'carriers/usps/password',NULL,'2024-03-14 08:55:28'),(206,'default',0,'carriers/usps/handling_fee',NULL,'2024-03-14 08:55:28'),(207,'default',0,'carriers/usps/free_shipping_enable','0','2024-03-14 08:55:28'),(208,'default',0,'carriers/usps/specificcountry',NULL,'2024-03-14 08:55:28'),(209,'default',0,'carriers/usps/debug','0','2024-03-14 08:55:28'),(210,'default',0,'carriers/usps/showmethod','0','2024-03-14 08:55:28'),(211,'default',0,'carriers/usps/sort_order',NULL,'2024-03-14 08:55:28'),(212,'default',0,'carriers/fedex/account',NULL,'2024-03-14 08:55:28'),(213,'default',0,'carriers/fedex/api_key',NULL,'2024-03-14 08:55:28'),(214,'default',0,'carriers/fedex/secret_key',NULL,'2024-03-14 08:55:28'),(215,'default',0,'carriers/fedex/handling_fee',NULL,'2024-03-14 08:55:28'),(216,'default',0,'carriers/fedex/residence_delivery','0','2024-03-14 08:55:28'),(217,'default',0,'carriers/fedex/smartpost_hubid',NULL,'2024-03-14 08:55:28'),(218,'default',0,'carriers/fedex/free_shipping_enable','0','2024-03-14 08:55:28'),(219,'default',0,'carriers/fedex/specificcountry',NULL,'2024-03-14 08:55:28'),(220,'default',0,'carriers/fedex/debug','0','2024-03-14 08:55:28'),(221,'default',0,'carriers/fedex/showmethod','0','2024-03-14 08:55:28'),(222,'default',0,'carriers/fedex/sort_order',NULL,'2024-03-14 08:55:28'),(223,'default',0,'carriers/dhl/id',NULL,'2024-03-14 08:55:28'),(224,'default',0,'carriers/dhl/password',NULL,'2024-03-14 08:55:28'),(225,'default',0,'carriers/dhl/handling_fee',NULL,'2024-03-14 08:55:28'),(226,'default',0,'carriers/dhl/free_method_nondoc',NULL,'2024-03-14 08:55:28'),(227,'default',0,'carriers/dhl/free_shipping_enable','0','2024-03-14 08:55:28'),(228,'default',0,'carriers/dhl/specificcountry',NULL,'2024-03-14 08:55:28'),(229,'default',0,'carriers/dhl/showmethod','0','2024-03-14 08:55:28'),(230,'default',0,'carriers/dhl/debug','0','2024-03-14 08:55:28'),(231,'default',0,'carriers/dhl/sandbox_mode','0','2024-03-14 08:55:28'),(232,'default',0,'carriers/dhl/sort_order',NULL,'2024-03-14 08:55:28'),(233,'default',0,'paypal/general/merchant_country','ES','2024-03-14 08:57:07'),(234,'default',0,'payment/paypal_express/active','0','2024-03-14 08:57:07'),(235,'default',0,'payment/paypal_express/in_context','0','2024-03-14 08:57:07'),(236,'default',0,'payment/paypal_paylater/experience_active','0','2024-03-14 08:57:07'),(237,'default',0,'paypal/general/business_account',NULL,'2024-03-14 08:57:07'),(238,'default',0,'paypal/wpp/api_authentication','0','2024-03-14 08:57:07'),(239,'default',0,'paypal/wpp/api_username',NULL,'2024-03-14 08:57:07'),(240,'default',0,'paypal/wpp/api_password',NULL,'2024-03-14 08:57:07'),(241,'default',0,'paypal/wpp/api_signature',NULL,'2024-03-14 08:57:07'),(242,'default',0,'paypal/wpp/sandbox_flag','0','2024-03-14 08:57:07'),(243,'default',0,'paypal/wpp/use_proxy','0','2024-03-14 08:57:07'),(244,'default',0,'payment/paypal_express/title','PayPal Express Checkout','2024-03-14 08:57:07'),(245,'default',0,'payment/paypal_express/sort_order',NULL,'2024-03-14 08:57:07'),(246,'default',0,'payment/paypal_express/payment_action','Authorization','2024-03-14 08:57:07'),(247,'default',0,'payment/paypal_express/visible_on_product','1','2024-03-14 08:57:07'),(248,'default',0,'payment/paypal_express/visible_on_cart','1','2024-03-14 08:57:07'),(249,'default',0,'payment/paypal_express/allowspecific','0','2024-03-14 08:57:07'),(250,'default',0,'payment/paypal_express/debug','0','2024-03-14 08:57:07'),(251,'default',0,'payment/paypal_express/verify_peer','1','2024-03-14 08:57:07'),(252,'default',0,'payment/paypal_express/line_items_enabled','1','2024-03-14 08:57:07'),(253,'default',0,'payment/paypal_express/transfer_shipping_options','0','2024-03-14 08:57:07'),(254,'default',0,'paypal/wpp/button_flavor','dynamic','2024-03-14 08:57:07'),(255,'default',0,'payment/paypal_express/solution_type','Mark','2024-03-14 08:57:07'),(256,'default',0,'payment/paypal_express/require_billing_address','0','2024-03-14 08:57:07'),(257,'default',0,'payment/paypal_express/allow_ba_signup','never','2024-03-14 08:57:07'),(258,'default',0,'payment/paypal_express/skip_order_review_step','1','2024-03-14 08:57:07'),(259,'default',0,'payment/paypal_billing_agreement/active','1','2024-03-14 08:57:07'),(260,'default',0,'payment/paypal_billing_agreement/title','PayPal Billing Agreement','2024-03-14 08:57:07'),(261,'default',0,'payment/paypal_billing_agreement/sort_order',NULL,'2024-03-14 08:57:07'),(262,'default',0,'payment/paypal_billing_agreement/payment_action','Authorization','2024-03-14 08:57:07'),(263,'default',0,'payment/paypal_billing_agreement/allowspecific','0','2024-03-14 08:57:07'),(264,'default',0,'payment/paypal_billing_agreement/debug','0','2024-03-14 08:57:07'),(265,'default',0,'payment/paypal_billing_agreement/verify_peer','1','2024-03-14 08:57:07'),(266,'default',0,'payment/paypal_billing_agreement/line_items_enabled','0','2024-03-14 08:57:07'),(267,'default',0,'payment/paypal_billing_agreement/allow_billing_agreement_wizard','1','2024-03-14 08:57:07'),(268,'default',0,'paypal/fetch_reports/ftp_login',NULL,'2024-03-14 08:57:07'),(269,'default',0,'paypal/fetch_reports/ftp_password',NULL,'2024-03-14 08:57:07'),(270,'default',0,'paypal/fetch_reports/ftp_sandbox','0','2024-03-14 08:57:07'),(271,'default',0,'paypal/fetch_reports/ftp_ip',NULL,'2024-03-14 08:57:07'),(272,'default',0,'paypal/fetch_reports/ftp_path',NULL,'2024-03-14 08:57:07'),(273,'default',0,'paypal/fetch_reports/active','0','2024-03-14 08:57:07'),(274,'default',0,'paypal/fetch_reports/schedule','1','2024-03-14 08:57:07'),(275,'default',0,'paypal/fetch_reports/time','00,00,00','2024-03-14 08:57:07'),(276,'default',0,'paypal/style/logo',NULL,'2024-03-14 08:57:07'),(277,'default',0,'paypal/style/page_style',NULL,'2024-03-14 08:57:07'),(278,'default',0,'paypal/style/paypal_hdrimg',NULL,'2024-03-14 08:57:07'),(279,'default',0,'paypal/style/paypal_hdrbackcolor',NULL,'2024-03-14 08:57:07'),(280,'default',0,'paypal/style/paypal_hdrbordercolor',NULL,'2024-03-14 08:57:07'),(281,'default',0,'paypal/style/paypal_payflowcolor',NULL,'2024-03-14 08:57:07'),(282,'default',0,'paypal/style/checkout_page_button_customize','0','2024-03-14 08:57:07'),(283,'default',0,'paypal/style/product_page_button_customize','0','2024-03-14 08:57:07'),(284,'default',0,'paypal/style/cart_page_button_customize','0','2024-03-14 08:57:07'),(285,'default',0,'paypal/style/mini_cart_page_button_customize','0','2024-03-14 08:57:07'),(286,'default',0,'paypal/style/disable_funding_options',NULL,'2024-03-14 08:57:07'),(287,'default',0,'payment/hosted_pro/active','0','2024-03-14 08:57:07'),(288,'default',0,'payment/hosted_pro/title','Payment by cards or by PayPal account','2024-03-14 08:57:07'),(289,'default',0,'payment/hosted_pro/sort_order',NULL,'2024-03-14 08:57:07'),(290,'default',0,'payment/hosted_pro/payment_action','Authorization','2024-03-14 08:57:07'),(291,'default',0,'payment/hosted_pro/display_ec','0','2024-03-14 08:57:07'),(292,'default',0,'payment/hosted_pro/allowspecific','0','2024-03-14 08:57:07'),(293,'default',0,'payment/hosted_pro/debug','0','2024-03-14 08:57:07'),(294,'default',0,'payment/hosted_pro/verify_peer','1','2024-03-14 08:57:07'),(295,'default',0,'payment/wps_express/active','0','2024-03-14 08:57:07'),(296,'default',0,'payment/free/specificcountry',NULL,'2024-03-14 08:57:08'),(297,'default',0,'payment/checkmo/specificcountry',NULL,'2024-03-14 08:57:08'),(298,'default',0,'payment/checkmo/payable_to',NULL,'2024-03-14 08:57:08'),(299,'default',0,'payment/checkmo/mailing_address',NULL,'2024-03-14 08:57:08'),(300,'default',0,'payment/checkmo/min_order_total',NULL,'2024-03-14 08:57:08'),(301,'default',0,'payment/checkmo/max_order_total',NULL,'2024-03-14 08:57:08'),(302,'default',0,'payment/checkmo/sort_order',NULL,'2024-03-14 08:57:08'),(303,'default',0,'payment/banktransfer/specificcountry',NULL,'2024-03-14 08:57:08'),(304,'default',0,'payment/banktransfer/instructions',NULL,'2024-03-14 08:57:08'),(305,'default',0,'payment/banktransfer/min_order_total',NULL,'2024-03-14 08:57:08'),(306,'default',0,'payment/banktransfer/max_order_total',NULL,'2024-03-14 08:57:08'),(307,'default',0,'payment/banktransfer/sort_order',NULL,'2024-03-14 08:57:08'),(308,'default',0,'payment/cashondelivery/specificcountry',NULL,'2024-03-14 08:57:08'),(309,'default',0,'payment/cashondelivery/instructions',NULL,'2024-03-14 08:57:08'),(310,'default',0,'payment/cashondelivery/min_order_total',NULL,'2024-03-14 08:57:08'),(311,'default',0,'payment/cashondelivery/max_order_total',NULL,'2024-03-14 08:57:08'),(312,'default',0,'payment/cashondelivery/sort_order',NULL,'2024-03-14 08:57:08'),(313,'default',0,'payment/purchaseorder/specificcountry',NULL,'2024-03-14 08:57:08'),(314,'default',0,'payment/purchaseorder/min_order_total',NULL,'2024-03-14 08:57:08'),(315,'default',0,'payment/purchaseorder/max_order_total',NULL,'2024-03-14 08:57:08'),(316,'default',0,'payment/purchaseorder/sort_order',NULL,'2024-03-14 08:57:08'),(317,'default',0,'payment/checkmo/active','0','2024-03-14 08:57:28'),(318,'default',0,'admin/security/password_lifetime',NULL,'2024-03-14 08:59:46'),(319,'default',0,'admin/security/password_is_forced','0','2024-03-14 08:59:46'),(320,'default',0,'system/currency/installed','EUR','2024-03-14 09:01:37'); /*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cron_schedule` -- DROP TABLE IF EXISTS `cron_schedule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cron_schedule` ( `schedule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Schedule ID', `job_code` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Job Code', `status` varchar(7) NOT NULL DEFAULT 'pending' COMMENT 'Status', `messages` text COMMENT 'Messages', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Scheduled At', `executed_at` timestamp NULL DEFAULT NULL COMMENT 'Executed At', `finished_at` timestamp NULL DEFAULT NULL COMMENT 'Finished At', PRIMARY KEY (`schedule_id`), KEY `CRON_SCHEDULE_JOB_CODE_STATUS_SCHEDULED_AT` (`job_code`,`status`,`scheduled_at`) ) ENGINE=InnoDB AUTO_INCREMENT=1735924 DEFAULT CHARSET=utf8mb3 COMMENT='Cron Schedule'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cron_schedule` -- LOCK TABLES `cron_schedule` WRITE; /*!40000 ALTER TABLE `cron_schedule` DISABLE KEYS */; INSERT INTO `cron_schedule` VALUES (1734482,'security_deactivate_expired_users','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734483,'catalog_index_refresh_price','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734488,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:58:00','2024-03-15 06:59:01','2024-03-15 06:59:02'),(1734489,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:59:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734490,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:02'),(1734491,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:01:00','2024-03-15 07:02:02','2024-03-15 07:02:03'),(1734492,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734493,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734494,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:04:00','2024-03-15 07:05:02','2024-03-15 07:05:02'),(1734495,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734496,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734497,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734498,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734503,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:58:00','2024-03-15 06:59:01','2024-03-15 06:59:01'),(1734504,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:59:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734505,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:02'),(1734506,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:01:00','2024-03-15 07:02:02','2024-03-15 07:02:02'),(1734507,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734508,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734509,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:04:00','2024-03-15 07:05:02','2024-03-15 07:05:02'),(1734510,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734511,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734512,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734513,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734515,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734516,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:05:02','2024-03-15 07:05:02'),(1734517,'sales_clean_orders','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734522,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734523,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734524,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:02'),(1734525,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734526,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734527,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734528,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734529,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734530,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734531,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734532,'sales_grid_order_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734537,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734538,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734539,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734540,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734541,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734542,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734543,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734544,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734545,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734546,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734547,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734552,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734553,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734554,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734555,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734556,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734557,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734558,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734559,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734561,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734563,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734564,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 06:49:02','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:03'),(1734569,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734570,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734571,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:03'),(1734572,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734573,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734574,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734575,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734576,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734577,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734578,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734579,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734584,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734585,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734586,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734587,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:04','2024-03-15 07:02:04'),(1734588,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734589,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734590,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734591,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734592,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:03'),(1734593,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734594,'sales_send_order_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734599,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734600,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734601,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734602,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:04','2024-03-15 07:02:04'),(1734603,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:03','2024-03-15 07:03:03'),(1734604,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734605,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734606,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734607,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:03','2024-03-15 07:07:03'),(1734608,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734609,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734614,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734615,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734616,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734617,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:04','2024-03-15 07:02:04'),(1734618,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:03','2024-03-15 07:03:03'),(1734619,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734620,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734621,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:03','2024-03-15 07:06:03'),(1734622,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:03','2024-03-15 07:07:03'),(1734623,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734624,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734629,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734630,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734631,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734632,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734633,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734634,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734635,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734636,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734637,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734638,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734639,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734644,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734645,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734646,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:02'),(1734647,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734648,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734649,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734650,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734651,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734652,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734653,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734654,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734655,'expired_tokens_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734657,'newsletter_send_all','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734658,'newsletter_send_all','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:05:02','2024-03-15 07:05:02'),(1734663,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:59:01','2024-03-15 06:59:01'),(1734664,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:59:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734665,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:01:02','2024-03-15 07:01:02'),(1734666,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:01:00','2024-03-15 07:02:02','2024-03-15 07:02:02'),(1734667,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734668,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:03:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734669,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:05:02','2024-03-15 07:05:02'),(1734670,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:05:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734671,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:07:02','2024-03-15 07:07:02'),(1734672,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:07:00','2024-03-15 07:08:01','2024-03-15 07:08:01'),(1734673,'bulk_cleanup','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:09:02','2024-03-15 07:09:02'),(1734674,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734675,'captcha_delete_old_attempts','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734676,'captcha_delete_expired_images','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:02'),(1734677,'messagequeue_clean_outdated_locks','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734680,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 06:58:00','2024-03-15 06:58:02','2024-03-15 06:58:02'),(1734681,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734682,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:02:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734683,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:04:00','2024-03-15 07:04:04','2024-03-15 07:04:04'),(1734684,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:06:00','2024-03-15 07:06:02','2024-03-15 07:06:02'),(1734685,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:08:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734686,'core_process_feed','success',NULL,'2024-03-15 06:49:03','2024-03-15 07:00:00','2024-03-15 07:00:02','2024-03-15 07:00:03'),(1734697,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 06:58:00','2024-03-15 06:58:03','2024-03-15 06:58:03'),(1734698,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 06:59:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734699,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734700,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:01:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734701,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:02:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734702,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:03:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734703,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:04:00','2024-03-15 07:04:03','2024-03-15 07:04:03'),(1734704,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:05:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734705,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:06:00','2024-03-15 07:06:03','2024-03-15 07:06:03'),(1734706,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:07:00','2024-03-15 07:07:03','2024-03-15 07:07:03'),(1734707,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:08:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734708,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:09:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734709,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734710,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:11:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734711,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:12:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734712,'consumers_runner','success',NULL,'2024-03-15 06:54:03','2024-03-15 07:13:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734713,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 06:55:02','2024-03-15 06:58:00','2024-03-15 06:58:03','2024-03-15 06:58:03'),(1734714,'indexer_update_all_views','success',NULL,'2024-03-15 06:55:02','2024-03-15 06:58:00','2024-03-15 06:58:03','2024-03-15 06:58:03'),(1734715,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 06:56:03','2024-03-15 06:59:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734716,'indexer_update_all_views','success',NULL,'2024-03-15 06:56:03','2024-03-15 06:59:00','2024-03-15 06:59:02','2024-03-15 06:59:02'),(1734717,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 06:58:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734718,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 06:58:03','2024-03-15 07:01:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734719,'indexer_update_all_views','success',NULL,'2024-03-15 06:58:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734720,'indexer_update_all_views','success',NULL,'2024-03-15 06:58:03','2024-03-15 07:01:00','2024-03-15 07:01:03','2024-03-15 07:01:03'),(1734721,'indexer_clean_all_changelogs','success',NULL,'2024-03-15 06:58:03','2024-03-15 07:00:00','2024-03-15 07:00:03','2024-03-15 07:00:03'),(1734722,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:00:03','2024-03-15 07:02:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734723,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:00:03','2024-03-15 07:03:00','2024-03-15 07:03:02','2024-03-15 07:03:02'),(1734724,'indexer_update_all_views','success',NULL,'2024-03-15 07:00:03','2024-03-15 07:02:00','2024-03-15 07:02:03','2024-03-15 07:02:03'),(1734725,'indexer_update_all_views','success',NULL,'2024-03-15 07:00:03','2024-03-15 07:03:00','2024-03-15 07:03:03','2024-03-15 07:03:03'),(1734726,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:01:03','2024-03-15 07:04:00','2024-03-15 07:04:03','2024-03-15 07:04:03'),(1734727,'indexer_update_all_views','success',NULL,'2024-03-15 07:01:03','2024-03-15 07:04:00','2024-03-15 07:04:03','2024-03-15 07:04:03'),(1734728,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:02:03','2024-03-15 07:05:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734729,'indexer_update_all_views','success',NULL,'2024-03-15 07:02:03','2024-03-15 07:05:00','2024-03-15 07:05:03','2024-03-15 07:05:03'),(1734730,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734731,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:10:00','2024-03-15 07:11:02','2024-03-15 07:11:02'),(1734732,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734733,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734734,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734735,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:14:00','2024-03-15 07:15:02','2024-03-15 07:15:02'),(1734736,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734737,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734738,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734739,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734740,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:19:00','2024-03-15 07:20:02','2024-03-15 07:20:03'),(1734741,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734742,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:21:00','2024-03-15 07:22:01','2024-03-15 07:22:01'),(1734743,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734744,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:23:00','2024-03-15 07:24:01','2024-03-15 07:24:01'),(1734745,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734746,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:10:00','2024-03-15 07:11:02','2024-03-15 07:11:02'),(1734747,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734748,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734749,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734750,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:14:00','2024-03-15 07:15:02','2024-03-15 07:15:02'),(1734751,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734752,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734753,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734754,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734755,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:19:00','2024-03-15 07:20:02','2024-03-15 07:20:02'),(1734756,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734757,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:21:00','2024-03-15 07:22:01','2024-03-15 07:22:01'),(1734758,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734759,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:23:00','2024-03-15 07:24:01','2024-03-15 07:24:01'),(1734760,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734761,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:15:00','2024-03-15 07:15:02','2024-03-15 07:15:02'),(1734762,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:20:00','2024-03-15 07:20:02','2024-03-15 07:20:02'),(1734763,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734764,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:10:00','2024-03-15 07:11:02','2024-03-15 07:11:02'),(1734765,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734766,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734767,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734768,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734769,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734770,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:02','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734771,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734772,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734773,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734774,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734775,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734776,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734777,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734778,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734779,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734780,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734781,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734782,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734783,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734784,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734785,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734786,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734787,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734788,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734789,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734790,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734791,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734792,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734793,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734794,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734795,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734796,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:03'),(1734797,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734798,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:06:00','2024-03-15 07:06:03','2024-03-15 07:06:03'),(1734799,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734800,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:07:00','2024-03-15 07:07:03','2024-03-15 07:07:03'),(1734801,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734802,'indexer_update_all_views','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:06:00','2024-03-15 07:06:03','2024-03-15 07:06:03'),(1734803,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734804,'indexer_update_all_views','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:07:00','2024-03-15 07:07:03','2024-03-15 07:07:03'),(1734805,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734806,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734807,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734808,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734809,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734810,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734811,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734812,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734813,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734814,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734815,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734816,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734817,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734818,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734819,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734820,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734821,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734822,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734823,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734824,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734825,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734826,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734827,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734828,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734829,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734830,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734831,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734832,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734833,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734834,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734835,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734836,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734837,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734838,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734839,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734840,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734841,'sales_send_order_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734842,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734843,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734844,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734845,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734846,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734847,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734848,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734849,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734850,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734851,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734852,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734853,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734854,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734855,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734856,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734857,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734858,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734859,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734860,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734861,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734862,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734863,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734864,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734865,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734866,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734867,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734868,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734869,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734870,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734871,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734872,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734873,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:10:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734874,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734875,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:12:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734876,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734877,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:03','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734878,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734879,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:16:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734880,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734881,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734882,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734883,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734884,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734885,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734886,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734887,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734888,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:11:02','2024-03-15 07:11:02'),(1734889,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:11:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734890,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734891,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734892,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:14:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734893,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734894,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734895,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734896,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734897,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:19:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734898,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734899,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:21:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734900,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734901,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:23:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734902,'newsletter_send_all','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734903,'newsletter_send_all','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:15:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734904,'newsletter_send_all','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734905,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:09:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734906,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:11:02','2024-03-15 07:11:02'),(1734907,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:11:00','2024-03-15 07:12:01','2024-03-15 07:12:01'),(1734908,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:12:00','2024-03-15 07:13:02','2024-03-15 07:13:02'),(1734909,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:13:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734910,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:14:00','2024-03-15 07:15:02','2024-03-15 07:15:02'),(1734911,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:15:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734912,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:16:00','2024-03-15 07:17:02','2024-03-15 07:17:02'),(1734913,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:17:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734914,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:18:00','2024-03-15 07:19:04','2024-03-15 07:19:04'),(1734915,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:19:00','2024-03-15 07:20:02','2024-03-15 07:20:02'),(1734916,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734917,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:21:00','2024-03-15 07:22:01','2024-03-15 07:22:01'),(1734918,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:22:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1734919,'bulk_cleanup','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:23:00','2024-03-15 07:24:01','2024-03-15 07:24:01'),(1734920,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734921,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:20:02','2024-03-15 07:20:02'),(1734922,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734923,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:20:02','2024-03-15 07:20:02'),(1734924,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734925,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:12:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734926,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:14:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734927,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:16:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734928,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:18:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734929,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:20:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734930,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:04:04','2024-03-15 07:22:00','2024-03-15 07:22:01','2024-03-15 07:22:01'),(1734931,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:05:03','2024-03-15 07:08:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734932,'indexer_update_all_views','success',NULL,'2024-03-15 07:05:03','2024-03-15 07:08:00','2024-03-15 07:08:02','2024-03-15 07:08:02'),(1734933,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:06:03','2024-03-15 07:09:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734934,'indexer_update_all_views','success',NULL,'2024-03-15 07:06:03','2024-03-15 07:09:00','2024-03-15 07:09:03','2024-03-15 07:09:03'),(1734935,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:07:03','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734936,'indexer_update_all_views','success',NULL,'2024-03-15 07:07:03','2024-03-15 07:10:00','2024-03-15 07:10:02','2024-03-15 07:10:02'),(1734937,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:11:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734938,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:12:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734939,'indexer_update_all_views','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:11:00','2024-03-15 07:11:03','2024-03-15 07:11:03'),(1734940,'indexer_update_all_views','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:12:00','2024-03-15 07:12:02','2024-03-15 07:12:02'),(1734941,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:14:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734942,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:15:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734943,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:16:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734944,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:17:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734945,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:18:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734946,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:19:00','2024-03-15 07:19:03','2024-03-15 07:19:03'),(1734947,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:20:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734948,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:21:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1734949,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:22:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1734950,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:23:00','2024-03-15 07:23:03','2024-03-15 07:23:03'),(1734951,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:24:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1734952,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:25:00','2024-03-15 07:25:03','2024-03-15 07:25:03'),(1734953,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:26:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1734954,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:27:00','2024-03-15 07:27:03','2024-03-15 07:27:03'),(1734955,'consumers_runner','success',NULL,'2024-03-15 07:09:03','2024-03-15 07:28:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1734956,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:11:03','2024-03-15 07:13:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734957,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:11:03','2024-03-15 07:14:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734958,'indexer_update_all_views','success',NULL,'2024-03-15 07:11:03','2024-03-15 07:13:00','2024-03-15 07:13:03','2024-03-15 07:13:03'),(1734959,'indexer_update_all_views','success',NULL,'2024-03-15 07:11:03','2024-03-15 07:14:00','2024-03-15 07:14:02','2024-03-15 07:14:02'),(1734960,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:13:03','2024-03-15 07:15:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734961,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:13:03','2024-03-15 07:16:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734962,'indexer_update_all_views','success',NULL,'2024-03-15 07:13:03','2024-03-15 07:15:00','2024-03-15 07:15:03','2024-03-15 07:15:03'),(1734963,'indexer_update_all_views','success',NULL,'2024-03-15 07:13:03','2024-03-15 07:16:00','2024-03-15 07:16:02','2024-03-15 07:16:02'),(1734964,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:15:03','2024-03-15 07:17:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734965,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:15:03','2024-03-15 07:18:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734966,'indexer_update_all_views','success',NULL,'2024-03-15 07:15:03','2024-03-15 07:17:00','2024-03-15 07:17:03','2024-03-15 07:17:03'),(1734967,'indexer_update_all_views','success',NULL,'2024-03-15 07:15:03','2024-03-15 07:18:00','2024-03-15 07:18:02','2024-03-15 07:18:02'),(1734968,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:17:03','2024-03-15 07:19:00','2024-03-15 07:19:03','2024-03-15 07:19:03'),(1734969,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:17:03','2024-03-15 07:20:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734970,'indexer_update_all_views','success',NULL,'2024-03-15 07:17:03','2024-03-15 07:19:00','2024-03-15 07:19:03','2024-03-15 07:19:03'),(1734971,'indexer_update_all_views','success',NULL,'2024-03-15 07:17:03','2024-03-15 07:20:00','2024-03-15 07:20:03','2024-03-15 07:20:03'),(1734972,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1734973,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:25:00','2024-03-15 07:26:01','2024-03-15 07:26:02'),(1734974,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1734975,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:27:00','2024-03-15 07:28:01','2024-03-15 07:28:02'),(1734976,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1734977,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:29:00','2024-03-15 07:30:01','2024-03-15 07:30:02'),(1734978,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1734979,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:31:00','2024-03-15 07:32:01','2024-03-15 07:32:02'),(1734980,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1734981,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:33:00','2024-03-15 07:34:01','2024-03-15 07:34:02'),(1734982,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1734983,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1734984,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:36:00','2024-03-15 07:37:01','2024-03-15 07:37:02'),(1734985,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1734986,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:38:00','2024-03-15 07:39:01','2024-03-15 07:39:02'),(1734987,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1734988,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:25:00','2024-03-15 07:26:01','2024-03-15 07:26:01'),(1734989,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1734990,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:27:00','2024-03-15 07:28:01','2024-03-15 07:28:01'),(1734991,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1734992,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:29:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1734993,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1734994,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:31:00','2024-03-15 07:32:01','2024-03-15 07:32:01'),(1734995,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1734996,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:33:00','2024-03-15 07:34:01','2024-03-15 07:34:01'),(1734997,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1734998,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1734999,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:36:00','2024-03-15 07:37:01','2024-03-15 07:37:01'),(1735000,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735001,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:38:00','2024-03-15 07:39:01','2024-03-15 07:39:01'),(1735002,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:25:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735003,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:30:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1735004,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:35:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735005,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735006,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735007,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735008,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735009,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735010,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735011,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735012,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735013,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735014,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735015,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735016,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735017,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735018,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:02','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735019,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735020,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735021,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735022,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735023,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735024,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735025,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735026,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735027,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735028,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735029,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735030,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735031,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735032,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735033,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735034,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735035,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735036,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:21:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1735037,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735038,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:22:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1735039,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735040,'indexer_update_all_views','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:21:00','2024-03-15 07:21:02','2024-03-15 07:21:02'),(1735041,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735042,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735043,'indexer_update_all_views','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:22:00','2024-03-15 07:22:02','2024-03-15 07:22:02'),(1735044,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735045,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735046,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735047,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735048,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735049,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735050,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735051,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735052,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735053,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735054,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735055,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735056,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735057,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735058,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735059,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735060,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735061,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735062,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735063,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735064,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735065,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735066,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735067,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735068,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735069,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735070,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735071,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735072,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735073,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735074,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735075,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735076,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735077,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735078,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735079,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735080,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735081,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735082,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735083,'sales_send_order_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735084,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735085,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735086,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735087,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735088,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735089,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735090,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735091,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735092,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735093,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735094,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735095,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735096,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735097,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735098,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735099,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735100,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735101,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735102,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735103,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735104,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735105,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735106,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735107,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735108,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735109,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735110,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735111,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735112,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735113,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735114,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735115,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735116,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735117,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735118,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735119,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735120,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735121,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735122,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735123,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735124,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735125,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735126,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735127,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735128,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735129,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:03','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735130,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:25:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735131,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735132,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:27:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735133,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735134,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:29:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735135,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735136,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:31:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735137,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735138,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:33:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735139,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735140,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735141,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:36:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735142,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735143,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:38:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735144,'newsletter_send_all','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:25:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735145,'newsletter_send_all','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735146,'newsletter_send_all','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:35:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735147,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:24:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735148,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:25:00','2024-03-15 07:26:01','2024-03-15 07:26:01'),(1735149,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:26:00','2024-03-15 07:27:02','2024-03-15 07:27:02'),(1735150,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:27:00','2024-03-15 07:28:01','2024-03-15 07:28:01'),(1735151,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:28:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735152,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:29:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1735153,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:31:02','2024-03-15 07:31:02'),(1735154,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:31:00','2024-03-15 07:32:01','2024-03-15 07:32:01'),(1735155,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:32:00','2024-03-15 07:33:02','2024-03-15 07:33:02'),(1735156,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:33:00','2024-03-15 07:34:01','2024-03-15 07:34:01'),(1735157,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:34:00','2024-03-15 07:35:04','2024-03-15 07:35:04'),(1735158,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:35:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735159,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:36:00','2024-03-15 07:37:01','2024-03-15 07:37:01'),(1735160,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:37:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735161,'bulk_cleanup','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:38:00','2024-03-15 07:39:01','2024-03-15 07:39:01'),(1735162,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1735163,'captcha_delete_old_attempts','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1735164,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:30:01','2024-03-15 07:30:01'),(1735165,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:24:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1735166,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:26:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735167,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:28:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735168,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:30:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735169,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:32:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735170,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:34:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735171,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:36:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735172,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:19:04','2024-03-15 07:38:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735173,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:20:03','2024-03-15 07:23:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1735174,'indexer_update_all_views','success',NULL,'2024-03-15 07:20:03','2024-03-15 07:23:00','2024-03-15 07:23:02','2024-03-15 07:23:02'),(1735175,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:22:02','2024-03-15 07:24:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1735176,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:22:02','2024-03-15 07:25:00','2024-03-15 07:25:02','2024-03-15 07:25:02'),(1735177,'indexer_update_all_views','success',NULL,'2024-03-15 07:22:02','2024-03-15 07:24:00','2024-03-15 07:24:02','2024-03-15 07:24:02'),(1735178,'indexer_update_all_views','success',NULL,'2024-03-15 07:22:02','2024-03-15 07:25:00','2024-03-15 07:25:03','2024-03-15 07:25:03'),(1735179,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:23:02','2024-03-15 07:26:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735180,'indexer_update_all_views','success',NULL,'2024-03-15 07:23:02','2024-03-15 07:26:00','2024-03-15 07:26:02','2024-03-15 07:26:02'),(1735181,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:24:02','2024-03-15 07:27:00','2024-03-15 07:27:03','2024-03-15 07:27:03'),(1735182,'indexer_update_all_views','success',NULL,'2024-03-15 07:24:02','2024-03-15 07:27:00','2024-03-15 07:27:03','2024-03-15 07:27:03'),(1735183,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:29:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735184,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:30:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735185,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:31:00','2024-03-15 07:31:03','2024-03-15 07:31:03'),(1735186,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:32:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735187,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:33:00','2024-03-15 07:33:03','2024-03-15 07:33:03'),(1735188,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:34:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735189,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:35:00','2024-03-15 07:35:03','2024-03-15 07:35:03'),(1735190,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:28:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735191,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:36:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735192,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:37:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735193,'indexer_update_all_views','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:28:00','2024-03-15 07:28:02','2024-03-15 07:28:02'),(1735194,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:38:00','2024-03-15 07:38:02','2024-03-15 07:38:02'),(1735195,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:39:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735196,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:40:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735197,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:41:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735198,'consumers_runner','success',NULL,'2024-03-15 07:25:02','2024-03-15 07:42:00','2024-03-15 07:42:03','2024-03-15 07:42:03'),(1735199,'consumers_runner','success',NULL,'2024-03-15 07:25:03','2024-03-15 07:43:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735200,'consumers_runner','success',NULL,'2024-03-15 07:25:03','2024-03-15 07:44:00','2024-03-15 07:44:03','2024-03-15 07:44:03'),(1735201,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:26:02','2024-03-15 07:29:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735202,'indexer_update_all_views','success',NULL,'2024-03-15 07:26:02','2024-03-15 07:29:00','2024-03-15 07:29:02','2024-03-15 07:29:02'),(1735203,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:27:03','2024-03-15 07:30:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735204,'indexer_update_all_views','success',NULL,'2024-03-15 07:27:03','2024-03-15 07:30:00','2024-03-15 07:30:02','2024-03-15 07:30:02'),(1735205,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:29:02','2024-03-15 07:31:00','2024-03-15 07:31:03','2024-03-15 07:31:03'),(1735206,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:29:02','2024-03-15 07:32:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735207,'indexer_update_all_views','success',NULL,'2024-03-15 07:29:02','2024-03-15 07:31:00','2024-03-15 07:31:03','2024-03-15 07:31:03'),(1735208,'indexer_update_all_views','success',NULL,'2024-03-15 07:29:02','2024-03-15 07:32:00','2024-03-15 07:32:02','2024-03-15 07:32:02'),(1735209,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:30:02','2024-03-15 07:33:00','2024-03-15 07:33:03','2024-03-15 07:33:03'),(1735210,'indexer_update_all_views','success',NULL,'2024-03-15 07:30:02','2024-03-15 07:33:00','2024-03-15 07:33:03','2024-03-15 07:33:03'),(1735211,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:31:03','2024-03-15 07:34:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735212,'indexer_update_all_views','success',NULL,'2024-03-15 07:31:03','2024-03-15 07:34:00','2024-03-15 07:34:02','2024-03-15 07:34:02'),(1735213,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:33:03','2024-03-15 07:35:00','2024-03-15 07:35:03','2024-03-15 07:35:03'),(1735214,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:33:03','2024-03-15 07:36:00','2024-03-15 07:36:02','2024-03-15 07:36:02'),(1735215,'indexer_update_all_views','success',NULL,'2024-03-15 07:33:03','2024-03-15 07:35:00','2024-03-15 07:35:03','2024-03-15 07:35:03'),(1735216,'indexer_update_all_views','success',NULL,'2024-03-15 07:33:03','2024-03-15 07:36:00','2024-03-15 07:36:03','2024-03-15 07:36:03'),(1735217,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735218,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735219,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735220,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:42:00','2024-03-15 07:43:01','2024-03-15 07:43:02'),(1735221,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735222,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735223,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735224,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:46:00','2024-03-15 07:47:01','2024-03-15 07:47:02'),(1735225,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735226,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735227,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735228,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735229,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:51:00','2024-03-15 07:52:01','2024-03-15 07:52:02'),(1735230,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735231,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:53:00','2024-03-15 07:54:01','2024-03-15 07:54:02'),(1735232,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735233,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735234,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:40:00','2024-03-15 07:41:01','2024-03-15 07:41:01'),(1735235,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735236,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:42:00','2024-03-15 07:43:01','2024-03-15 07:43:01'),(1735237,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735238,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735239,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735240,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:46:00','2024-03-15 07:47:01','2024-03-15 07:47:01'),(1735241,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735242,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:48:00','2024-03-15 07:49:01','2024-03-15 07:49:02'),(1735243,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735244,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735245,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:51:00','2024-03-15 07:52:01','2024-03-15 07:52:01'),(1735246,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735247,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:53:00','2024-03-15 07:54:01','2024-03-15 07:54:01'),(1735248,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735249,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:40:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735250,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:45:00','2024-03-15 07:45:01','2024-03-15 07:45:02'),(1735251,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:50:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735252,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735253,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735254,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735255,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735256,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735257,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735258,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735259,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735260,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735261,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735262,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735263,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735264,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735265,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735266,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735267,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735268,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735269,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735270,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735271,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735272,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735273,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735274,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735275,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735276,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735277,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735278,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735279,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735280,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735281,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735282,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735283,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:35:02','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735284,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735285,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735286,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735287,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735288,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735289,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735290,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735291,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735292,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735293,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735294,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735295,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735296,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735297,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735298,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735299,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:37:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735300,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735301,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:38:00','2024-03-15 07:38:02','2024-03-15 07:38:03'),(1735302,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735303,'indexer_update_all_views','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:37:00','2024-03-15 07:37:02','2024-03-15 07:37:02'),(1735304,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735305,'indexer_update_all_views','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:38:00','2024-03-15 07:38:03','2024-03-15 07:38:03'),(1735306,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735307,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735308,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735309,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735310,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735311,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735312,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735313,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735314,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735315,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735316,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735317,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735318,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735319,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735320,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735321,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735322,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735323,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735324,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735325,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735326,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735327,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735328,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735329,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735330,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735331,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735332,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735333,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735334,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735335,'sales_send_order_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735336,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735337,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735338,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:03'),(1735339,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735340,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735341,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735342,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735343,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735344,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735345,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735346,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735347,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735348,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735349,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:03','2024-03-15 07:53:03'),(1735350,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735351,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735352,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735353,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735354,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:03','2024-03-15 07:42:03'),(1735355,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735356,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735357,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735358,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735359,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735360,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735361,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735362,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735363,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735364,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735365,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:03','2024-03-15 07:53:03'),(1735366,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735367,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:03','2024-03-15 07:55:03'),(1735368,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735369,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735370,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735371,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735372,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735373,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735374,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735375,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735376,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735377,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735378,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735379,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735380,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735381,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735382,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735383,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735384,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735385,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735386,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735387,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735388,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735389,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735390,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735391,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735392,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735393,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735394,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735395,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735396,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735397,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735398,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:53:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735399,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735400,'newsletter_send_all','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735401,'newsletter_send_all','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735402,'newsletter_send_all','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735403,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:39:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735404,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:40:00','2024-03-15 07:41:01','2024-03-15 07:41:01'),(1735405,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:41:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735406,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:42:00','2024-03-15 07:43:01','2024-03-15 07:43:01'),(1735407,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:43:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735408,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:44:00','2024-03-15 07:45:01','2024-03-15 07:45:01'),(1735409,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:45:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735410,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:46:00','2024-03-15 07:47:01','2024-03-15 07:47:01'),(1735411,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:47:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735412,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:48:00','2024-03-15 07:49:01','2024-03-15 07:49:01'),(1735413,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:49:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735414,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:50:00','2024-03-15 07:51:02','2024-03-15 07:51:02'),(1735415,'bulk_cleanup','success',NULL,'2024-03-15 07:35:03','2024-03-15 07:51:00','2024-03-15 07:52:01','2024-03-15 07:52:01'),(1735416,'bulk_cleanup','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:52:00','2024-03-15 07:53:02','2024-03-15 07:53:02'),(1735417,'bulk_cleanup','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:53:00','2024-03-15 07:54:01','2024-03-15 07:54:01'),(1735418,'bulk_cleanup','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:54:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735419,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:40:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735420,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:50:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735421,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:40:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735422,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:50:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735423,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:40:00','2024-03-15 07:40:02','2024-03-15 07:40:02'),(1735424,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:42:00','2024-03-15 07:42:02','2024-03-15 07:42:02'),(1735425,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:44:00','2024-03-15 07:44:02','2024-03-15 07:44:02'),(1735426,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:46:00','2024-03-15 07:46:02','2024-03-15 07:46:02'),(1735427,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:48:00','2024-03-15 07:48:02','2024-03-15 07:48:02'),(1735428,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:50:00','2024-03-15 07:50:04','2024-03-15 07:50:04'),(1735429,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:52:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735430,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:35:04','2024-03-15 07:54:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735431,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:37:02','2024-03-15 07:39:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735432,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:37:02','2024-03-15 07:40:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735433,'indexer_update_all_views','success',NULL,'2024-03-15 07:37:02','2024-03-15 07:39:00','2024-03-15 07:39:02','2024-03-15 07:39:02'),(1735434,'indexer_update_all_views','success',NULL,'2024-03-15 07:37:02','2024-03-15 07:40:00','2024-03-15 07:40:03','2024-03-15 07:40:03'),(1735435,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:38:02','2024-03-15 07:41:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735436,'indexer_update_all_views','success',NULL,'2024-03-15 07:38:02','2024-03-15 07:41:00','2024-03-15 07:41:02','2024-03-15 07:41:02'),(1735437,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:39:02','2024-03-15 07:42:00','2024-03-15 07:42:03','2024-03-15 07:42:03'),(1735438,'indexer_update_all_views','success',NULL,'2024-03-15 07:39:02','2024-03-15 07:42:00','2024-03-15 07:42:03','2024-03-15 07:42:03'),(1735439,'consumers_runner','success',NULL,'2024-03-15 07:40:02','2024-03-15 07:45:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735440,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:46:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735441,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:47:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735442,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:48:00','2024-03-15 07:48:03','2024-03-15 07:48:03'),(1735443,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:49:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735444,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:50:00','2024-03-15 07:50:03','2024-03-15 07:50:03'),(1735445,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:51:00','2024-03-15 07:51:03','2024-03-15 07:51:03'),(1735446,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:52:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735447,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:53:00','2024-03-15 07:53:03','2024-03-15 07:53:03'),(1735448,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:54:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735449,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:55:00','2024-03-15 07:55:03','2024-03-15 07:55:03'),(1735450,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:56:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735451,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:57:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735452,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:58:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735453,'consumers_runner','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:59:00','2024-03-15 07:59:03','2024-03-15 07:59:03'),(1735454,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:43:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735455,'indexer_update_all_views','success',NULL,'2024-03-15 07:40:03','2024-03-15 07:43:00','2024-03-15 07:43:02','2024-03-15 07:43:02'),(1735456,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:42:03','2024-03-15 07:44:00','2024-03-15 07:44:03','2024-03-15 07:44:03'),(1735457,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:42:03','2024-03-15 07:45:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735458,'indexer_update_all_views','success',NULL,'2024-03-15 07:42:03','2024-03-15 07:44:00','2024-03-15 07:44:03','2024-03-15 07:44:03'),(1735459,'indexer_update_all_views','success',NULL,'2024-03-15 07:42:03','2024-03-15 07:45:00','2024-03-15 07:45:02','2024-03-15 07:45:02'),(1735460,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:44:03','2024-03-15 07:46:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735461,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:44:03','2024-03-15 07:47:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735462,'indexer_update_all_views','success',NULL,'2024-03-15 07:44:03','2024-03-15 07:46:00','2024-03-15 07:46:03','2024-03-15 07:46:03'),(1735463,'indexer_update_all_views','success',NULL,'2024-03-15 07:44:03','2024-03-15 07:47:00','2024-03-15 07:47:02','2024-03-15 07:47:02'),(1735464,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:46:03','2024-03-15 07:48:00','2024-03-15 07:48:03','2024-03-15 07:48:03'),(1735465,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:46:03','2024-03-15 07:49:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735466,'indexer_update_all_views','success',NULL,'2024-03-15 07:46:03','2024-03-15 07:48:00','2024-03-15 07:48:03','2024-03-15 07:48:03'),(1735467,'indexer_update_all_views','success',NULL,'2024-03-15 07:46:03','2024-03-15 07:49:00','2024-03-15 07:49:02','2024-03-15 07:49:02'),(1735468,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:48:03','2024-03-15 07:50:00','2024-03-15 07:50:03','2024-03-15 07:50:03'),(1735469,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:48:03','2024-03-15 07:51:00','2024-03-15 07:51:03','2024-03-15 07:51:03'),(1735470,'indexer_update_all_views','success',NULL,'2024-03-15 07:48:03','2024-03-15 07:50:00','2024-03-15 07:50:03','2024-03-15 07:50:03'),(1735471,'indexer_update_all_views','success',NULL,'2024-03-15 07:48:03','2024-03-15 07:51:00','2024-03-15 07:51:03','2024-03-15 07:51:03'),(1735472,'security_deactivate_expired_users','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735473,'catalog_index_refresh_price','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735474,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735475,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735476,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:57:00','2024-03-15 07:58:01','2024-03-15 07:58:02'),(1735477,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735478,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735479,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735480,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735481,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:02:00','2024-03-15 08:03:02','2024-03-15 08:03:02'),(1735482,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735483,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735484,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:05:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735485,'catalog_product_outdated_price_values_cleanup','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735486,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:07:00',NULL,NULL),(1735487,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:08:00',NULL,NULL),(1735488,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:09:00',NULL,NULL),(1735489,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735490,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735491,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:57:00','2024-03-15 07:58:01','2024-03-15 07:58:01'),(1735492,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735493,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:59:00','2024-03-15 08:00:01','2024-03-15 08:00:02'),(1735494,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735495,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735496,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:02:00','2024-03-15 08:03:02','2024-03-15 08:03:02'),(1735497,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735498,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735499,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:05:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735500,'catalog_product_frontend_actions_flush','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:06:00','2024-03-15 08:07:01','2024-03-15 08:07:01'),(1735501,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:07:00',NULL,NULL),(1735502,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:08:00',NULL,NULL),(1735503,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:09:00',NULL,NULL),(1735504,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:55:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735505,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735506,'catalog_product_attribute_value_synchronize','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:05:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735507,'sales_clean_orders','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735508,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735509,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735510,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735511,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735512,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735513,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735514,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735515,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735516,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735517,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735518,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:05:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735519,'sales_grid_order_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735520,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:07:00',NULL,NULL),(1735521,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:08:00',NULL,NULL),(1735522,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 07:50:02','2024-03-15 08:09:00',NULL,NULL),(1735523,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735524,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:03'),(1735525,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735526,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735527,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735528,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735529,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735530,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735531,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735532,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:02','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735533,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735534,'sales_grid_order_invoice_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735535,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735536,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735537,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735538,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735539,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735540,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735541,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735542,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735543,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735544,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735545,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735546,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735547,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735548,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735549,'sales_grid_order_shipment_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735550,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735551,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735552,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735553,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735554,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:52:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735555,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735556,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:53:00','2024-03-15 07:53:03','2024-03-15 07:53:03'),(1735557,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735558,'indexer_update_all_views','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:52:00','2024-03-15 07:52:02','2024-03-15 07:52:02'),(1735559,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735560,'indexer_update_all_views','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:53:00','2024-03-15 07:53:03','2024-03-15 07:53:03'),(1735561,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735562,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735563,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735564,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735565,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735566,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735567,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735568,'sales_grid_order_creditmemo_async_insert','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735569,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735570,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735571,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735572,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735573,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735574,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735575,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735576,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735577,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735578,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735579,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735580,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735581,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735582,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735583,'sales_send_order_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735584,'sales_send_order_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735585,'sales_send_order_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735586,'sales_send_order_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735587,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735588,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735589,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735590,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735591,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735592,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735593,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735594,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735595,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735596,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735597,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735598,'sales_send_order_invoice_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735599,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735600,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735601,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735602,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735603,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735604,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735605,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:03'),(1735606,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735607,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735608,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735609,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735610,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735611,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735612,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735613,'sales_send_order_shipment_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735614,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735615,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735616,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735617,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735618,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735619,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735620,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735621,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735622,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:03'),(1735623,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735624,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735625,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735626,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735627,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735628,'sales_send_order_creditmemo_emails','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735629,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735630,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735631,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735632,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735633,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735634,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735635,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735636,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735637,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735638,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735639,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:02','2024-03-15 08:03:02'),(1735640,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735641,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735642,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735643,'outdated_authentication_failures_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735644,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735645,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735646,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735647,'expired_tokens_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735648,'newsletter_send_all','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:55:02','2024-03-15 07:55:02'),(1735649,'newsletter_send_all','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735650,'newsletter_send_all','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735651,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:55:00','2024-03-15 07:56:01','2024-03-15 07:56:01'),(1735652,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:56:00','2024-03-15 07:57:02','2024-03-15 07:57:02'),(1735653,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:57:00','2024-03-15 07:58:01','2024-03-15 07:58:01'),(1735654,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:58:00','2024-03-15 07:59:02','2024-03-15 07:59:02'),(1735655,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 07:59:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735656,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:01:02','2024-03-15 08:01:02'),(1735657,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:01:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735658,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:02:00','2024-03-15 08:03:02','2024-03-15 08:03:02'),(1735659,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:03:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735660,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:04:00','2024-03-15 08:05:04','2024-03-15 08:05:04'),(1735661,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:05:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735662,'bulk_cleanup','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:06:00','2024-03-15 08:07:01','2024-03-15 08:07:01'),(1735663,'bulk_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:07:00',NULL,NULL),(1735664,'bulk_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:08:00',NULL,NULL),(1735665,'bulk_cleanup','pending',NULL,'2024-03-15 07:50:03','2024-03-15 08:09:00',NULL,NULL),(1735666,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735667,'captcha_delete_old_attempts','success',NULL,'2024-03-15 07:50:03','2024-03-15 08:00:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735668,'captcha_delete_expired_images','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:00:00','2024-03-15 08:00:01','2024-03-15 08:00:01'),(1735669,'messagequeue_clean_outdated_locks','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735670,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 07:56:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735671,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 07:58:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735672,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735673,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:02:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735674,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:04:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735675,'magento_newrelicreporting_cron','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:06:00','2024-03-15 08:06:02','2024-03-15 08:06:02'),(1735676,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 07:50:04','2024-03-15 08:08:00',NULL,NULL),(1735677,'core_process_feed','success',NULL,'2024-03-15 07:50:04','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735678,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:51:03','2024-03-15 07:54:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735679,'indexer_update_all_views','success',NULL,'2024-03-15 07:51:03','2024-03-15 07:54:00','2024-03-15 07:54:02','2024-03-15 07:54:02'),(1735680,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:53:03','2024-03-15 07:55:00','2024-03-15 07:55:03','2024-03-15 07:55:03'),(1735681,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:53:03','2024-03-15 07:56:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735682,'indexer_update_all_views','success',NULL,'2024-03-15 07:53:03','2024-03-15 07:55:00','2024-03-15 07:55:03','2024-03-15 07:55:03'),(1735683,'indexer_update_all_views','success',NULL,'2024-03-15 07:53:03','2024-03-15 07:56:00','2024-03-15 07:56:02','2024-03-15 07:56:02'),(1735684,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:55:03','2024-03-15 07:57:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735685,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:55:03','2024-03-15 07:58:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735686,'indexer_update_all_views','success',NULL,'2024-03-15 07:55:03','2024-03-15 07:57:00','2024-03-15 07:57:03','2024-03-15 07:57:03'),(1735687,'indexer_update_all_views','success',NULL,'2024-03-15 07:55:03','2024-03-15 07:58:00','2024-03-15 07:58:02','2024-03-15 07:58:02'),(1735688,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735689,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:01:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735690,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:02:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735691,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:03:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735692,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:04:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735693,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:05:00','2024-03-15 08:05:03','2024-03-15 08:05:03'),(1735694,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:06:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735695,'consumers_runner','success',NULL,'2024-03-15 07:55:03','2024-03-15 08:07:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735696,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:08:00',NULL,NULL),(1735697,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:09:00',NULL,NULL),(1735698,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:10:00',NULL,NULL),(1735699,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:11:00',NULL,NULL),(1735700,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:12:00',NULL,NULL),(1735701,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:13:00',NULL,NULL),(1735702,'consumers_runner','pending',NULL,'2024-03-15 07:55:03','2024-03-15 08:14:00',NULL,NULL),(1735703,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:57:03','2024-03-15 07:59:00','2024-03-15 07:59:03','2024-03-15 07:59:03'),(1735704,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:57:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735705,'indexer_update_all_views','success',NULL,'2024-03-15 07:57:03','2024-03-15 07:59:00','2024-03-15 07:59:03','2024-03-15 07:59:03'),(1735706,'indexer_update_all_views','success',NULL,'2024-03-15 07:57:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735707,'indexer_clean_all_changelogs','success',NULL,'2024-03-15 07:57:03','2024-03-15 08:00:00','2024-03-15 08:00:02','2024-03-15 08:00:02'),(1735708,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:59:03','2024-03-15 08:01:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735709,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 07:59:03','2024-03-15 08:02:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735710,'indexer_update_all_views','success',NULL,'2024-03-15 07:59:03','2024-03-15 08:01:00','2024-03-15 08:01:03','2024-03-15 08:01:03'),(1735711,'indexer_update_all_views','success',NULL,'2024-03-15 07:59:03','2024-03-15 08:02:00','2024-03-15 08:02:02','2024-03-15 08:02:02'),(1735712,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 08:01:03','2024-03-15 08:03:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735713,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 08:01:03','2024-03-15 08:04:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735714,'indexer_update_all_views','success',NULL,'2024-03-15 08:01:03','2024-03-15 08:03:00','2024-03-15 08:03:03','2024-03-15 08:03:03'),(1735715,'indexer_update_all_views','success',NULL,'2024-03-15 08:01:03','2024-03-15 08:04:00','2024-03-15 08:04:02','2024-03-15 08:04:02'),(1735716,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 08:03:03','2024-03-15 08:05:00','2024-03-15 08:05:03','2024-03-15 08:05:03'),(1735717,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 08:03:03','2024-03-15 08:06:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735718,'indexer_update_all_views','success',NULL,'2024-03-15 08:03:03','2024-03-15 08:05:00','2024-03-15 08:05:03','2024-03-15 08:05:03'),(1735719,'indexer_update_all_views','success',NULL,'2024-03-15 08:03:03','2024-03-15 08:06:00','2024-03-15 08:06:03','2024-03-15 08:06:03'),(1735720,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:10:00',NULL,NULL),(1735721,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:11:00',NULL,NULL),(1735722,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:12:00',NULL,NULL),(1735723,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:13:00',NULL,NULL),(1735724,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:14:00',NULL,NULL),(1735725,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:15:00',NULL,NULL),(1735726,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:16:00',NULL,NULL),(1735727,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:17:00',NULL,NULL),(1735728,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:18:00',NULL,NULL),(1735729,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:19:00',NULL,NULL),(1735730,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:20:00',NULL,NULL),(1735731,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:21:00',NULL,NULL),(1735732,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:22:00',NULL,NULL),(1735733,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:23:00',NULL,NULL),(1735734,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:24:00',NULL,NULL),(1735735,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:10:00',NULL,NULL),(1735736,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:11:00',NULL,NULL),(1735737,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:12:00',NULL,NULL),(1735738,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:13:00',NULL,NULL),(1735739,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:14:00',NULL,NULL),(1735740,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:15:00',NULL,NULL),(1735741,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:16:00',NULL,NULL),(1735742,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:17:00',NULL,NULL),(1735743,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:18:00',NULL,NULL),(1735744,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:19:00',NULL,NULL),(1735745,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:20:00',NULL,NULL),(1735746,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:21:00',NULL,NULL),(1735747,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:22:00',NULL,NULL),(1735748,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:23:00',NULL,NULL),(1735749,'catalog_product_frontend_actions_flush','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:24:00',NULL,NULL),(1735750,'catalog_product_attribute_value_synchronize','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:10:00',NULL,NULL),(1735751,'catalog_product_attribute_value_synchronize','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:15:00',NULL,NULL),(1735752,'catalog_product_attribute_value_synchronize','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:20:00',NULL,NULL),(1735753,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:10:00',NULL,NULL),(1735754,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:02','2024-03-15 08:11:00',NULL,NULL),(1735755,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735756,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735757,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735758,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735759,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735760,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735761,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735762,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735763,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735764,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735765,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735766,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735767,'sales_grid_order_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735768,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735769,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735770,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735771,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735772,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735773,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735774,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735775,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735776,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735777,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735778,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735779,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735780,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735781,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735782,'sales_grid_order_invoice_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735783,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735784,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735785,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735786,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735787,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735788,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735789,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735790,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735791,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735792,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735793,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735794,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735795,'indexer_reindex_all_invalid','success',NULL,'2024-03-15 08:05:03','2024-03-15 08:07:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735796,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735797,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735798,'indexer_reindex_all_invalid','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:08:00',NULL,NULL),(1735799,'sales_grid_order_shipment_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735800,'indexer_update_all_views','success',NULL,'2024-03-15 08:05:03','2024-03-15 08:07:00','2024-03-15 08:07:02','2024-03-15 08:07:02'),(1735801,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735802,'indexer_update_all_views','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:08:00',NULL,NULL),(1735803,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735804,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735805,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735806,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735807,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735808,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735809,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735810,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735811,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735812,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735813,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735814,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735815,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735816,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735817,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735818,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735819,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735820,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735821,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735822,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735823,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735824,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735825,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735826,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735827,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735828,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735829,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735830,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735831,'sales_send_order_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735832,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735833,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735834,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735835,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735836,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735837,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735838,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735839,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735840,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735841,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735842,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735843,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735844,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735845,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735846,'sales_send_order_invoice_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735847,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735848,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735849,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735850,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735851,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735852,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735853,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735854,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735855,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735856,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735857,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735858,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735859,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735860,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735861,'sales_send_order_shipment_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735862,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:10:00',NULL,NULL),(1735863,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:11:00',NULL,NULL),(1735864,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:12:00',NULL,NULL),(1735865,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:13:00',NULL,NULL),(1735866,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:14:00',NULL,NULL),(1735867,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:15:00',NULL,NULL),(1735868,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:16:00',NULL,NULL),(1735869,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:17:00',NULL,NULL),(1735870,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:18:00',NULL,NULL),(1735871,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:19:00',NULL,NULL),(1735872,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:20:00',NULL,NULL),(1735873,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:21:00',NULL,NULL),(1735874,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:22:00',NULL,NULL),(1735875,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:23:00',NULL,NULL),(1735876,'sales_send_order_creditmemo_emails','pending',NULL,'2024-03-15 08:05:03','2024-03-15 08:24:00',NULL,NULL),(1735877,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735878,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:11:00',NULL,NULL),(1735879,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:12:00',NULL,NULL),(1735880,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:13:00',NULL,NULL),(1735881,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:14:00',NULL,NULL),(1735882,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:15:00',NULL,NULL),(1735883,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:16:00',NULL,NULL),(1735884,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:17:00',NULL,NULL),(1735885,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:18:00',NULL,NULL),(1735886,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:19:00',NULL,NULL),(1735887,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735888,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:21:00',NULL,NULL),(1735889,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:22:00',NULL,NULL),(1735890,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:23:00',NULL,NULL),(1735891,'outdated_authentication_failures_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:24:00',NULL,NULL),(1735892,'newsletter_send_all','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735893,'newsletter_send_all','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:15:00',NULL,NULL),(1735894,'newsletter_send_all','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735895,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735896,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:11:00',NULL,NULL),(1735897,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:12:00',NULL,NULL),(1735898,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:13:00',NULL,NULL),(1735899,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:14:00',NULL,NULL),(1735900,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:15:00',NULL,NULL),(1735901,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:16:00',NULL,NULL),(1735902,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:17:00',NULL,NULL),(1735903,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:18:00',NULL,NULL),(1735904,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:19:00',NULL,NULL),(1735905,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735906,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:21:00',NULL,NULL),(1735907,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:22:00',NULL,NULL),(1735908,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:23:00',NULL,NULL),(1735909,'bulk_cleanup','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:24:00',NULL,NULL),(1735910,'bulk_mark_incomplete_operations_as_failed','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735911,'bulk_mark_incomplete_operations_as_failed','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735912,'captcha_delete_expired_images','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735913,'captcha_delete_expired_images','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735914,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:10:00',NULL,NULL),(1735915,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:12:00',NULL,NULL),(1735916,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:14:00',NULL,NULL),(1735917,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:16:00',NULL,NULL),(1735918,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:18:00',NULL,NULL),(1735919,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:20:00',NULL,NULL),(1735920,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:22:00',NULL,NULL),(1735921,'magento_newrelicreporting_cron','pending',NULL,'2024-03-15 08:05:04','2024-03-15 08:24:00',NULL,NULL),(1735922,'indexer_reindex_all_invalid','pending',NULL,'2024-03-15 08:06:03','2024-03-15 08:09:00',NULL,NULL),(1735923,'indexer_update_all_views','pending',NULL,'2024-03-15 08:06:03','2024-03-15 08:09:00',NULL,NULL); /*!40000 ALTER TABLE `cron_schedule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity` -- DROP TABLE IF EXISTS `customer_address_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active', `city` varchar(255) NOT NULL COMMENT 'City', `company` varchar(255) DEFAULT NULL COMMENT 'Company', `country_id` varchar(255) NOT NULL COMMENT 'Country', `fax` varchar(255) DEFAULT NULL COMMENT 'Fax', `firstname` varchar(255) NOT NULL COMMENT 'First Name', `lastname` varchar(255) NOT NULL COMMENT 'Last Name', `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name', `postcode` varchar(255) DEFAULT NULL COMMENT 'Zip/Postal Code', `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix', `region` varchar(255) DEFAULT NULL COMMENT 'State/Province', `region_id` int unsigned DEFAULT NULL COMMENT 'State/Province', `street` text NOT NULL COMMENT 'Street Address', `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix', `telephone` varchar(255) NOT NULL COMMENT 'Phone Number', `vat_id` varchar(255) DEFAULT NULL COMMENT 'VAT number', `vat_is_valid` int unsigned DEFAULT NULL COMMENT 'VAT number validity', `vat_request_date` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request date', `vat_request_id` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request ID', `vat_request_success` int unsigned DEFAULT NULL COMMENT 'VAT number validation request success', PRIMARY KEY (`entity_id`), KEY `CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`), CONSTRAINT `CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity` -- LOCK TABLES `customer_address_entity` WRITE; /*!40000 ALTER TABLE `customer_address_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_datetime` -- DROP TABLE IF EXISTS `customer_address_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity_datetime` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` datetime DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Datetime'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity_datetime` -- LOCK TABLES `customer_address_entity_datetime` WRITE; /*!40000 ALTER TABLE `customer_address_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_decimal` -- DROP TABLE IF EXISTS `customer_address_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity_decimal` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_ADDR_ENTT_DEC_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Decimal'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity_decimal` -- LOCK TABLES `customer_address_entity_decimal` WRITE; /*!40000 ALTER TABLE `customer_address_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_int` -- DROP TABLE IF EXISTS `customer_address_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity_int` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` int NOT NULL DEFAULT '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_ADDR_ENTT_INT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Int'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity_int` -- LOCK TABLES `customer_address_entity_int` WRITE; /*!40000 ALTER TABLE `customer_address_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_text` -- DROP TABLE IF EXISTS `customer_address_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity_text` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` text NOT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Text'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity_text` -- LOCK TABLES `customer_address_entity_text` WRITE; /*!40000 ALTER TABLE `customer_address_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_varchar` -- DROP TABLE IF EXISTS `customer_address_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_address_entity_varchar` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Address Entity Varchar'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_address_entity_varchar` -- LOCK TABLES `customer_address_entity_varchar` WRITE; /*!40000 ALTER TABLE `customer_address_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_dummy_cl` -- DROP TABLE IF EXISTS `customer_dummy_cl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_dummy_cl` ( `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', PRIMARY KEY (`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='customer_dummy_cl'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_dummy_cl` -- LOCK TABLES `customer_dummy_cl` WRITE; /*!40000 ALTER TABLE `customer_dummy_cl` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_dummy_cl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_eav_attribute` -- DROP TABLE IF EXISTS `customer_eav_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_eav_attribute` ( `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `is_visible` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Visible', `input_filter` varchar(255) DEFAULT NULL COMMENT 'Input Filter', `multiline_count` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Multiline Count', `validate_rules` text COMMENT 'Validate Rules', `is_system` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is System', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `data_model` varchar(255) DEFAULT NULL COMMENT 'Data Model', `is_used_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Used in Grid', `is_visible_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible in Grid', `is_filterable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Filterable in Grid', `is_searchable_in_grid` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Searchable in Grid', `grid_filter_condition_type` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Grid Filter Condition Type', PRIMARY KEY (`attribute_id`), KEY `CUSTOMER_EAV_ATTRIBUTE_SORT_ORDER` (`sort_order`), CONSTRAINT `CUSTOMER_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Eav Attribute'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_eav_attribute` -- LOCK TABLES `customer_eav_attribute` WRITE; /*!40000 ALTER TABLE `customer_eav_attribute` DISABLE KEYS */; INSERT INTO `customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL,1,1,1,0,0),(2,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(3,1,NULL,0,NULL,1,20,NULL,1,1,0,1,0),(4,0,NULL,0,NULL,0,30,NULL,0,0,0,0,0),(5,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,0,0,0,0,0),(6,0,'trim',0,NULL,0,50,NULL,0,0,0,0,0),(7,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,0,0,0,0,0),(8,0,NULL,0,NULL,0,70,NULL,0,0,0,0,0),(9,1,NULL,0,'{\"input_validation\":\"email\"}',1,80,NULL,1,1,1,1,0),(10,1,NULL,0,NULL,1,25,NULL,1,1,1,0,0),(11,0,'date',0,'{\"input_validation\":\"date\"}',0,90,NULL,1,1,1,0,0),(12,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(13,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(14,0,NULL,0,'{\"input_validation\":\"date\"}',1,0,NULL,0,0,0,0,0),(15,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(16,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(17,0,NULL,0,'{\"max_text_length\":255}',0,100,NULL,1,1,0,1,0),(18,0,NULL,0,NULL,1,0,NULL,1,1,1,0,0),(19,0,NULL,0,NULL,0,0,NULL,1,1,1,0,0),(20,0,NULL,0,'[]',0,110,NULL,1,1,1,0,0),(21,1,NULL,0,NULL,1,28,NULL,0,0,0,0,0),(22,0,NULL,0,NULL,0,10,NULL,0,0,0,0,0),(23,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,20,NULL,1,0,0,1,0),(24,0,'trim',0,NULL,0,30,NULL,0,0,0,0,0),(25,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,1,0,0,1,0),(26,0,NULL,0,NULL,0,50,NULL,0,0,0,0,0),(27,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,1,0,0,1,0),(28,1,NULL,4,'{\"max_text_length\":255,\"min_text_length\":1}',1,70,NULL,1,0,0,1,0),(29,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,100,NULL,1,0,0,1,0),(30,1,NULL,0,NULL,1,80,NULL,1,1,1,0,0),(31,1,NULL,0,NULL,1,90,NULL,1,1,0,1,0),(32,1,NULL,0,NULL,1,90,NULL,0,0,0,0,0),(33,1,NULL,0,'[]',1,110,'Magento\\Customer\\Model\\Attribute\\Data\\Postcode',1,1,1,1,0),(34,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,120,NULL,1,1,1,1,0),(35,0,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',0,130,NULL,1,0,0,1,0),(36,1,NULL,0,NULL,1,140,NULL,0,0,0,0,0),(37,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(38,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(39,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(40,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(41,0,NULL,0,NULL,0,0,NULL,0,0,0,0,0),(42,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(43,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(44,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0); /*!40000 ALTER TABLE `customer_eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_eav_attribute_website` -- DROP TABLE IF EXISTS `customer_eav_attribute_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_eav_attribute_website` ( `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `is_visible` smallint unsigned DEFAULT NULL COMMENT 'Is Visible', `is_required` smallint unsigned DEFAULT NULL COMMENT 'Is Required', `default_value` text COMMENT 'Default Value', `multiline_count` smallint unsigned DEFAULT NULL COMMENT 'Multiline Count', PRIMARY KEY (`attribute_id`,`website_id`), KEY `CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`), CONSTRAINT `CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CSTR_EAV_ATTR_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Eav Attribute Website'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_eav_attribute_website` -- LOCK TABLES `customer_eav_attribute_website` WRITE; /*!40000 ALTER TABLE `customer_eav_attribute_website` DISABLE KEYS */; INSERT INTO `customer_eav_attribute_website` VALUES (1,1,NULL,NULL,NULL,NULL),(3,1,NULL,NULL,NULL,NULL),(5,1,NULL,NULL,NULL,NULL),(6,1,NULL,NULL,NULL,NULL),(7,1,NULL,NULL,NULL,NULL),(9,1,NULL,NULL,NULL,NULL),(10,1,NULL,NULL,NULL,NULL),(11,1,NULL,NULL,NULL,NULL),(17,1,NULL,NULL,NULL,NULL),(18,1,NULL,NULL,NULL,NULL),(19,1,NULL,NULL,NULL,NULL),(20,1,NULL,NULL,NULL,NULL),(21,1,NULL,NULL,NULL,NULL),(23,1,NULL,NULL,NULL,NULL),(24,1,NULL,NULL,NULL,NULL),(25,1,NULL,NULL,NULL,NULL),(27,1,NULL,NULL,NULL,NULL),(28,1,NULL,NULL,NULL,NULL),(29,1,NULL,NULL,NULL,NULL),(30,1,NULL,NULL,NULL,NULL),(31,1,NULL,NULL,NULL,NULL),(32,1,NULL,NULL,NULL,NULL),(33,1,NULL,NULL,NULL,NULL),(34,1,NULL,NULL,NULL,NULL),(35,1,NULL,NULL,NULL,NULL),(36,1,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `customer_eav_attribute_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity` -- DROP TABLE IF EXISTS `customer_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `website_id` smallint unsigned DEFAULT NULL COMMENT 'Website ID', `email` varchar(255) DEFAULT NULL COMMENT 'Email', `group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Group ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Active', `disable_auto_group_change` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Disable automatic group change based on VAT ID', `created_in` varchar(255) DEFAULT NULL COMMENT 'Created From', `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix', `firstname` varchar(255) DEFAULT NULL COMMENT 'First Name', `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name/Initial', `lastname` varchar(255) DEFAULT NULL COMMENT 'Last Name', `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix', `dob` date DEFAULT NULL COMMENT 'Date of Birth', `password_hash` varchar(128) DEFAULT NULL COMMENT 'Password_hash', `rp_token` varchar(128) DEFAULT NULL COMMENT 'Reset password token', `rp_token_created_at` datetime DEFAULT NULL COMMENT 'Reset password token creation time', `default_billing` int unsigned DEFAULT NULL COMMENT 'Default Billing Address', `default_shipping` int unsigned DEFAULT NULL COMMENT 'Default Shipping Address', `taxvat` varchar(50) DEFAULT NULL COMMENT 'Tax/VAT Number', `confirmation` varchar(64) DEFAULT NULL COMMENT 'Is Confirmed', `gender` smallint unsigned DEFAULT NULL COMMENT 'Gender', `failures_num` smallint DEFAULT '0' COMMENT 'Failure Number', `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure', `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock Expiration Date', `session_cutoff` timestamp NULL DEFAULT NULL COMMENT 'Session Cutoff Time', PRIMARY KEY (`entity_id`), UNIQUE KEY `CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`), KEY `CUSTOMER_ENTITY_STORE_ID` (`store_id`), KEY `CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`), KEY `CUSTOMER_ENTITY_FIRSTNAME` (`firstname`), KEY `CUSTOMER_ENTITY_LASTNAME` (`lastname`), CONSTRAINT `CUSTOMER_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `CUSTOMER_ENTITY_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity` -- LOCK TABLES `customer_entity` WRITE; /*!40000 ALTER TABLE `customer_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_datetime` -- DROP TABLE IF EXISTS `customer_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity_datetime` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` datetime DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Datetime'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity_datetime` -- LOCK TABLES `customer_entity_datetime` WRITE; /*!40000 ALTER TABLE `customer_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_decimal` -- DROP TABLE IF EXISTS `customer_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity_decimal` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Decimal'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity_decimal` -- LOCK TABLES `customer_entity_decimal` WRITE; /*!40000 ALTER TABLE `customer_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_int` -- DROP TABLE IF EXISTS `customer_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity_int` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` int NOT NULL DEFAULT '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Int'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity_int` -- LOCK TABLES `customer_entity_int` WRITE; /*!40000 ALTER TABLE `customer_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_text` -- DROP TABLE IF EXISTS `customer_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity_text` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` text NOT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Text'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity_text` -- LOCK TABLES `customer_entity_text` WRITE; /*!40000 ALTER TABLE `customer_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_varchar` -- DROP TABLE IF EXISTS `customer_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_entity_varchar` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`), CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Entity Varchar'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_entity_varchar` -- LOCK TABLES `customer_entity_varchar` WRITE; /*!40000 ALTER TABLE `customer_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_form_attribute` -- DROP TABLE IF EXISTS `customer_form_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_form_attribute` ( `form_code` varchar(32) NOT NULL COMMENT 'Form Code', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', PRIMARY KEY (`form_code`,`attribute_id`), KEY `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Form Attribute'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_form_attribute` -- LOCK TABLES `customer_form_attribute` WRITE; /*!40000 ALTER TABLE `customer_form_attribute` DISABLE KEYS */; INSERT INTO `customer_form_attribute` VALUES ('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('customer_account_create',4),('customer_account_edit',4),('adminhtml_customer',5),('customer_account_create',5),('customer_account_edit',5),('adminhtml_customer',6),('customer_account_create',6),('customer_account_edit',6),('adminhtml_customer',7),('customer_account_create',7),('customer_account_edit',7),('adminhtml_customer',8),('customer_account_create',8),('customer_account_edit',8),('adminhtml_checkout',9),('adminhtml_customer',9),('customer_account_create',9),('customer_account_edit',9),('adminhtml_checkout',10),('adminhtml_customer',10),('adminhtml_checkout',11),('adminhtml_customer',11),('customer_account_create',11),('customer_account_edit',11),('adminhtml_checkout',17),('adminhtml_customer',17),('customer_account_create',17),('customer_account_edit',17),('adminhtml_customer',19),('customer_account_create',19),('customer_account_edit',19),('adminhtml_checkout',20),('adminhtml_customer',20),('customer_account_create',20),('customer_account_edit',20),('adminhtml_customer',21),('adminhtml_customer_address',22),('customer_address_edit',22),('customer_register_address',22),('adminhtml_customer_address',23),('customer_address_edit',23),('customer_register_address',23),('adminhtml_customer_address',24),('customer_address_edit',24),('customer_register_address',24),('adminhtml_customer_address',25),('customer_address_edit',25),('customer_register_address',25),('adminhtml_customer_address',26),('customer_address_edit',26),('customer_register_address',26),('adminhtml_customer_address',27),('customer_address_edit',27),('customer_register_address',27),('adminhtml_customer_address',28),('customer_address_edit',28),('customer_register_address',28),('adminhtml_customer_address',29),('customer_address_edit',29),('customer_register_address',29),('adminhtml_customer_address',30),('customer_address_edit',30),('customer_register_address',30),('adminhtml_customer_address',31),('customer_address_edit',31),('customer_register_address',31),('adminhtml_customer_address',32),('customer_address_edit',32),('customer_register_address',32),('adminhtml_customer_address',33),('customer_address_edit',33),('customer_register_address',33),('adminhtml_customer_address',34),('customer_address_edit',34),('customer_register_address',34),('adminhtml_customer_address',35),('customer_address_edit',35),('customer_register_address',35),('adminhtml_customer_address',36),('customer_address_edit',36),('customer_register_address',36); /*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_grid_flat` -- DROP TABLE IF EXISTS `customer_grid_flat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_grid_flat` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `name` text COMMENT 'Name', `email` varchar(255) DEFAULT NULL COMMENT 'Email', `group_id` int DEFAULT NULL COMMENT 'Group_id', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at', `website_id` int DEFAULT NULL COMMENT 'Website_id', `confirmation` varchar(255) DEFAULT NULL COMMENT 'Confirmation', `created_in` text COMMENT 'Created_in', `dob` date DEFAULT NULL COMMENT 'Dob', `gender` int DEFAULT NULL COMMENT 'Gender', `taxvat` varchar(255) DEFAULT NULL COMMENT 'Taxvat', `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock_expires', `shipping_full` text COMMENT 'Shipping_full', `billing_full` text COMMENT 'Billing_full', `billing_firstname` varchar(255) DEFAULT NULL COMMENT 'Billing_firstname', `billing_lastname` varchar(255) DEFAULT NULL COMMENT 'Billing_lastname', `billing_telephone` varchar(255) DEFAULT NULL COMMENT 'Billing_telephone', `billing_postcode` varchar(255) DEFAULT NULL COMMENT 'Billing_postcode', `billing_country_id` varchar(255) DEFAULT NULL COMMENT 'Billing_country_id', `billing_region` varchar(255) DEFAULT NULL COMMENT 'Billing_region', `billing_region_id` int DEFAULT NULL COMMENT 'Billing_region_id', `billing_street` varchar(255) DEFAULT NULL COMMENT 'Billing_street', `billing_city` varchar(255) DEFAULT NULL COMMENT 'Billing_city', `billing_fax` varchar(255) DEFAULT NULL COMMENT 'Billing_fax', `billing_vat_id` varchar(255) DEFAULT NULL COMMENT 'Billing_vat_id', `billing_company` varchar(255) DEFAULT NULL COMMENT 'Billing_company', PRIMARY KEY (`entity_id`), KEY `CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`), KEY `CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`), KEY `CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`), KEY `CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`), KEY `CUSTOMER_GRID_FLAT_DOB` (`dob`), KEY `CUSTOMER_GRID_FLAT_GENDER` (`gender`), KEY `CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`), FULLTEXT KEY `FTI_8746F705702DD5F6D45B8C7CE7FE9F2F` (`name`,`email`,`created_in`,`taxvat`,`shipping_full`,`billing_full`,`billing_firstname`,`billing_lastname`,`billing_telephone`,`billing_postcode`,`billing_region`,`billing_city`,`billing_fax`,`billing_company`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='customer_grid_flat'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_grid_flat` -- LOCK TABLES `customer_grid_flat` WRITE; /*!40000 ALTER TABLE `customer_grid_flat` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_grid_flat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_group` -- DROP TABLE IF EXISTS `customer_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_group` ( `customer_group_id` int unsigned NOT NULL AUTO_INCREMENT, `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code', `tax_class_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Tax Class ID', PRIMARY KEY (`customer_group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Customer Group'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_group` -- LOCK TABLES `customer_group` WRITE; /*!40000 ALTER TABLE `customer_group` DISABLE KEYS */; INSERT INTO `customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3); /*!40000 ALTER TABLE `customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_group_excluded_website` -- DROP TABLE IF EXISTS `customer_group_excluded_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_group_excluded_website` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT, `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint unsigned NOT NULL COMMENT 'Excluded Website ID from Customer Group', PRIMARY KEY (`entity_id`), KEY `CUSTOMER_GROUP_EXCLUDED_WEBSITE_CUSTOMER_GROUP_ID_WEBSITE_ID` (`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Excluded Websites From Customer Group'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_group_excluded_website` -- LOCK TABLES `customer_group_excluded_website` WRITE; /*!40000 ALTER TABLE `customer_group_excluded_website` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_group_excluded_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_log` -- DROP TABLE IF EXISTS `customer_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_log` ( `log_id` int NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `customer_id` int NOT NULL COMMENT 'Customer ID', `last_login_at` timestamp NULL DEFAULT NULL COMMENT 'Last Login Time', `last_logout_at` timestamp NULL DEFAULT NULL COMMENT 'Last Logout Time', PRIMARY KEY (`log_id`), UNIQUE KEY `CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Customer Log Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_log` -- LOCK TABLES `customer_log` WRITE; /*!40000 ALTER TABLE `customer_log` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_visitor` -- DROP TABLE IF EXISTS `customer_visitor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_visitor` ( `visitor_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID', `customer_id` int DEFAULT NULL COMMENT 'Customer ID', `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `last_visit_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last Visit Time', PRIMARY KEY (`visitor_id`), KEY `CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`), KEY `CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Visitor Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_visitor` -- LOCK TABLES `customer_visitor` WRITE; /*!40000 ALTER TABLE `customer_visitor` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_visitor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `design_change` -- DROP TABLE IF EXISTS `design_change`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `design_change` ( `design_change_id` int NOT NULL AUTO_INCREMENT COMMENT 'Design Change ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `design` varchar(255) DEFAULT NULL COMMENT 'Design', `date_from` date DEFAULT NULL COMMENT 'First Date of Design Activity', `date_to` date DEFAULT NULL COMMENT 'Last Date of Design Activity', PRIMARY KEY (`design_change_id`), KEY `DESIGN_CHANGE_STORE_ID` (`store_id`), CONSTRAINT `DESIGN_CHANGE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Design Changes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `design_change` -- LOCK TABLES `design_change` WRITE; /*!40000 ALTER TABLE `design_change` DISABLE KEYS */; /*!40000 ALTER TABLE `design_change` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `design_config_dummy_cl` -- DROP TABLE IF EXISTS `design_config_dummy_cl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `design_config_dummy_cl` ( `version_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Version ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', PRIMARY KEY (`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='design_config_dummy_cl'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `design_config_dummy_cl` -- LOCK TABLES `design_config_dummy_cl` WRITE; /*!40000 ALTER TABLE `design_config_dummy_cl` DISABLE KEYS */; /*!40000 ALTER TABLE `design_config_dummy_cl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `design_config_grid_flat` -- DROP TABLE IF EXISTS `design_config_grid_flat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `design_config_grid_flat` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `store_website_id` int DEFAULT NULL COMMENT 'Store_website_id', `store_group_id` int DEFAULT NULL COMMENT 'Store_group_id', `store_id` int DEFAULT NULL COMMENT 'Store_id', `theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id', PRIMARY KEY (`entity_id`), KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`), KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`), KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`), FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='design_config_grid_flat'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `design_config_grid_flat` -- LOCK TABLES `design_config_grid_flat` WRITE; /*!40000 ALTER TABLE `design_config_grid_flat` DISABLE KEYS */; INSERT INTO `design_config_grid_flat` VALUES (0,NULL,NULL,NULL,'3'),(1,1,NULL,NULL,'3'),(2,1,1,1,'3'); /*!40000 ALTER TABLE `design_config_grid_flat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country` -- DROP TABLE IF EXISTS `directory_country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `directory_country` ( `country_id` varchar(2) NOT NULL COMMENT 'Country ID in ISO-2', `iso2_code` varchar(2) DEFAULT NULL COMMENT 'Country ISO-2 format', `iso3_code` varchar(3) DEFAULT NULL COMMENT 'Country ISO-3', PRIMARY KEY (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `directory_country` -- LOCK TABLES `directory_country` WRITE; /*!40000 ALTER TABLE `directory_country` DISABLE KEYS */; INSERT INTO `directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BQ','BQ','BES'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CW','CW','CUW'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SX','SX','SXM'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('XK','XK','XKX'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE'); /*!40000 ALTER TABLE `directory_country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_format` -- DROP TABLE IF EXISTS `directory_country_format`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `directory_country_format` ( `country_format_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Country Format ID', `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID in ISO-2', `type` varchar(30) DEFAULT NULL COMMENT 'Country Format Type', `format` text NOT NULL COMMENT 'Country Format', PRIMARY KEY (`country_format_id`), UNIQUE KEY `DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Format'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `directory_country_format` -- LOCK TABLES `directory_country_format` WRITE; /*!40000 ALTER TABLE `directory_country_format` DISABLE KEYS */; /*!40000 ALTER TABLE `directory_country_format` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_region` -- DROP TABLE IF EXISTS `directory_country_region`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `directory_country_region` ( `region_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Region ID', `country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Country ID in ISO-2', `code` varchar(32) DEFAULT NULL COMMENT 'Region code', `default_name` varchar(255) DEFAULT NULL COMMENT 'Region Name', PRIMARY KEY (`region_id`), KEY `DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1157 DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Region'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `directory_country_region` -- LOCK TABLES `directory_country_region` WRITE; /*!40000 ALTER TABLE `directory_country_region` DISABLE KEYS */; INSERT INTO `directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AE','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AE','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AE','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Vorarlberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Friburg'),(111,'CH','GE','Geneva'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Lucerne'),(116,'CH','NE','Neuchâtel'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Ticino'),(125,'CH','UR','Uri'),(126,'CH','VD','Vaud'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'),(485,'BR','AC','Acre'),(486,'BR','AL','Alagoas'),(487,'BR','AP','Amapá'),(488,'BR','AM','Amazonas'),(489,'BR','BA','Bahia'),(490,'BR','CE','Ceará'),(491,'BR','ES','Espírito Santo'),(492,'BR','GO','Goiás'),(493,'BR','MA','Maranhão'),(494,'BR','MT','Mato Grosso'),(495,'BR','MS','Mato Grosso do Sul'),(496,'BR','MG','Minas Gerais'),(497,'BR','PA','Pará'),(498,'BR','PB','Paraíba'),(499,'BR','PR','Paraná'),(500,'BR','PE','Pernambuco'),(501,'BR','PI','Piauí'),(502,'BR','RJ','Rio de Janeiro'),(503,'BR','RN','Rio Grande do Norte'),(504,'BR','RS','Rio Grande do Sul'),(505,'BR','RO','Rondônia'),(506,'BR','RR','Roraima'),(507,'BR','SC','Santa Catarina'),(508,'BR','SP','São Paulo'),(509,'BR','SE','Sergipe'),(510,'BR','TO','Tocantins'),(511,'BR','DF','Distrito Federal'),(512,'AL','AL-01','Berat'),(513,'AL','AL-09','Dibër'),(514,'AL','AL-02','Durrës'),(515,'AL','AL-03','Elbasan'),(516,'AL','AL-04','Fier'),(517,'AL','AL-05','Gjirokastër'),(518,'AL','AL-06','Korçë'),(519,'AL','AL-07','Kukës'),(520,'AL','AL-08','Lezhë'),(521,'AL','AL-10','Shkodër'),(522,'AL','AL-11','Tiranë'),(523,'AL','AL-12','Vlorë'),(524,'AR','AR-C','Ciudad Autónoma de Buenos Aires'),(525,'AR','AR-B','Buenos Aires'),(526,'AR','AR-K','Catamarca'),(527,'AR','AR-H','Chaco'),(528,'AR','AR-U','Chubut'),(529,'AR','AR-X','Córdoba'),(530,'AR','AR-W','Corrientes'),(531,'AR','AR-E','Entre Ríos'),(532,'AR','AR-P','Formosa'),(533,'AR','AR-Y','Jujuy'),(534,'AR','AR-L','La Pampa'),(535,'AR','AR-F','La Rioja'),(536,'AR','AR-M','Mendoza'),(537,'AR','AR-N','Misiones'),(538,'AR','AR-Q','Neuquén'),(539,'AR','AR-R','Río Negro'),(540,'AR','AR-A','Salta'),(541,'AR','AR-J','San Juan'),(542,'AR','AR-D','San Luis'),(543,'AR','AR-Z','Santa Cruz'),(544,'AR','AR-S','Santa Fe'),(545,'AR','AR-G','Santiago del Estero'),(546,'AR','AR-V','Tierra del Fuego'),(547,'AR','AR-T','Tucumán'),(548,'HR','HR-01','Zagrebačka županija'),(549,'HR','HR-02','Krapinsko-zagorska županija'),(550,'HR','HR-03','Sisačko-moslavačka županija'),(551,'HR','HR-04','Karlovačka županija'),(552,'HR','HR-05','Varaždinska županija'),(553,'HR','HR-06','Koprivničko-križevačka županija'),(554,'HR','HR-07','Bjelovarsko-bilogorska županija'),(555,'HR','HR-08','Primorsko-goranska županija'),(556,'HR','HR-09','Ličko-senjska županija'),(557,'HR','HR-10','Virovitičko-podravska županija'),(558,'HR','HR-11','Požeško-slavonska županija'),(559,'HR','HR-12','Brodsko-posavska županija'),(560,'HR','HR-13','Zadarska županija'),(561,'HR','HR-14','Osječko-baranjska županija'),(562,'HR','HR-15','Šibensko-kninska županija'),(563,'HR','HR-16','Vukovarsko-srijemska županija'),(564,'HR','HR-17','Splitsko-dalmatinska županija'),(565,'HR','HR-18','Istarska županija'),(566,'HR','HR-19','Dubrovačko-neretvanska županija'),(567,'HR','HR-20','Međimurska županija'),(568,'HR','HR-21','Grad Zagreb'),(569,'IN','AN','Andaman and Nicobar Islands'),(570,'IN','AP','Andhra Pradesh'),(571,'IN','AR','Arunachal Pradesh'),(572,'IN','AS','Assam'),(573,'IN','BR','Bihar'),(574,'IN','CH','Chandigarh'),(575,'IN','CT','Chhattisgarh'),(576,'IN','DN','Dadra and Nagar Haveli'),(577,'IN','DD','Daman and Diu'),(578,'IN','DL','Delhi'),(579,'IN','GA','Goa'),(580,'IN','GJ','Gujarat'),(581,'IN','HR','Haryana'),(582,'IN','HP','Himachal Pradesh'),(583,'IN','JK','Jammu and Kashmir'),(584,'IN','JH','Jharkhand'),(585,'IN','KA','Karnataka'),(586,'IN','KL','Kerala'),(587,'IN','LD','Lakshadweep'),(588,'IN','MP','Madhya Pradesh'),(589,'IN','MH','Maharashtra'),(590,'IN','MN','Manipur'),(591,'IN','ML','Meghalaya'),(592,'IN','MZ','Mizoram'),(593,'IN','NL','Nagaland'),(594,'IN','OR','Odisha'),(595,'IN','PY','Puducherry'),(596,'IN','PB','Punjab'),(597,'IN','RJ','Rajasthan'),(598,'IN','SK','Sikkim'),(599,'IN','TN','Tamil Nadu'),(600,'IN','TG','Telangana'),(601,'IN','TR','Tripura'),(602,'IN','UP','Uttar Pradesh'),(603,'IN','UT','Uttarakhand'),(604,'IN','WB','West Bengal'),(605,'AU','ACT','Australian Capital Territory'),(606,'AU','NSW','New South Wales'),(607,'AU','VIC','Victoria'),(608,'AU','QLD','Queensland'),(609,'AU','SA','South Australia'),(610,'AU','TAS','Tasmania'),(611,'AU','WA','Western Australia'),(612,'AU','NT','Northern Territory'),(613,'BY','BY-BR','Bresckaja voblasć'),(614,'BY','BY-HO','Homieĺskaja voblasć'),(615,'BY','BY-HM','Horad Minsk'),(616,'BY','BY-HR','Hrodzienskaja voblasć'),(617,'BY','BY-MA','Mahilioŭskaja voblasć'),(618,'BY','BY-MI','Minskaja voblasć'),(619,'BY','BY-VI','Viciebskaja voblasć'),(620,'BE','VAN','Antwerpen'),(621,'BE','WBR','Brabant wallon'),(622,'BE','BRU','Brussels-Capital Region'),(623,'BE','WHT','Hainaut'),(624,'BE','VLI','Limburg'),(625,'BE','WLG','Liège'),(626,'BE','WLX','Luxembourg'),(627,'BE','WNA','Namur'),(628,'BE','VOV','Oost-Vlaanderen'),(629,'BE','VBR','Vlaams-Brabant'),(630,'BE','VWV','West-Vlaanderen'),(631,'BO','BO-C','Cochabamba'),(632,'BO','BO-H','Chuquisaca'),(633,'BO','BO-B','El Beni'),(634,'BO','BO-L','La Paz'),(635,'BO','BO-O','Oruro'),(636,'BO','BO-N','Pando'),(637,'BO','BO-P','Potosí'),(638,'BO','BO-S','Santa Cruz'),(639,'BO','BO-T','Tarija'),(640,'BG','BG-01','Blagoevgrad'),(641,'BG','BG-02','Burgas'),(642,'BG','BG-03','Varna'),(643,'BG','BG-04','Veliko Tarnovo'),(644,'BG','BG-05','Vidin'),(645,'BG','BG-06','Vratsa'),(646,'BG','BG-07','Gabrovo'),(647,'BG','BG-08','Dobrich'),(648,'BG','BG-09','Kardzhali'),(649,'BG','BG-10','Kyustendil'),(650,'BG','BG-11','Lovech'),(651,'BG','BG-12','Montana'),(652,'BG','BG-13','Pazardzhik'),(653,'BG','BG-14','Pernik'),(654,'BG','BG-15','Pleven'),(655,'BG','BG-16','Plovdiv'),(656,'BG','BG-17','Razgrad'),(657,'BG','BG-18','Ruse'),(658,'BG','BG-19','Silistra'),(659,'BG','BG-20','Sliven'),(660,'BG','BG-21','Smolyan'),(661,'BG','BG-22','Sofia City'),(662,'BG','BG-23','Sofia Province'),(663,'BG','BG-24','Stara Zagora'),(664,'BG','BG-25','Targovishte'),(665,'BG','BG-26','Haskovo'),(666,'BG','BG-27','Shumen'),(667,'BG','BG-28','Yambol'),(668,'CL','CL-AI','Aisén del General Carlos Ibañez del Campo'),(669,'CL','CL-AN','Antofagasta'),(670,'CL','CL-AP','Arica y Parinacota'),(671,'CL','CL-AR','La Araucanía'),(672,'CL','CL-AT','Atacama'),(673,'CL','CL-BI','Biobío'),(674,'CL','CL-CO','Coquimbo'),(675,'CL','CL-LI','Libertador General Bernardo O\'Higgins'),(676,'CL','CL-LL','Los Lagos'),(677,'CL','CL-LR','Los Ríos'),(678,'CL','CL-MA','Magallanes'),(679,'CL','CL-ML','Maule'),(680,'CL','CL-NB','Ñuble'),(681,'CL','CL-RM','Región Metropolitana de Santiago'),(682,'CL','CL-TA','Tarapacá'),(683,'CL','CL-VS','Valparaíso'),(684,'CN','CN-AH','Anhui Sheng'),(685,'CN','CN-BJ','Beijing Shi'),(686,'CN','CN-CQ','Chongqing Shi'),(687,'CN','CN-FJ','Fujian Sheng'),(688,'CN','CN-GS','Gansu Sheng'),(689,'CN','CN-GD','Guangdong Sheng'),(690,'CN','CN-GX','Guangxi Zhuangzu Zizhiqu'),(691,'CN','CN-GZ','Guizhou Sheng'),(692,'CN','CN-HI','Hainan Sheng'),(693,'CN','CN-HE','Hebei Sheng'),(694,'CN','CN-HL','Heilongjiang Sheng'),(695,'CN','CN-HA','Henan Sheng'),(696,'CN','CN-HK','Hong Kong SAR'),(697,'CN','CN-HB','Hubei Sheng'),(698,'CN','CN-HN','Hunan Sheng'),(699,'CN','CN-JS','Jiangsu Sheng'),(700,'CN','CN-JX','Jiangxi Sheng'),(701,'CN','CN-JL','Jilin Sheng'),(702,'CN','CN-LN','Liaoning Sheng'),(703,'CN','CN-MO','Macao SAR'),(704,'CN','CN-NM','Nei Mongol Zizhiqu'),(705,'CN','CN-NX','Ningxia Huizi Zizhiqu'),(706,'CN','CN-QH','Qinghai Sheng'),(707,'CN','CN-SN','Shaanxi Sheng'),(708,'CN','CN-SD','Shandong Sheng'),(709,'CN','CN-SH','Shanghai Shi'),(710,'CN','CN-SX','Shanxi Sheng'),(711,'CN','CN-SC','Sichuan Sheng'),(712,'CN','CN-TW','Taiwan Sheng'),(713,'CN','CN-TJ','Tianjin Shi'),(714,'CN','CN-XJ','Xinjiang Uygur Zizhiqu'),(715,'CN','CN-XZ','Xizang Zizhiqu'),(716,'CN','CN-YN','Yunnan Sheng'),(717,'CN','CN-ZJ','Zhejiang Sheng'),(718,'CO','CO-AMA','Amazonas'),(719,'CO','CO-ANT','Antioquia'),(720,'CO','CO-ARA','Arauca'),(721,'CO','CO-ATL','Atlántico'),(722,'CO','CO-BOL','Bolívar'),(723,'CO','CO-BOY','Boyacá'),(724,'CO','CO-CAL','Caldas'),(725,'CO','CO-CAQ','Caquetá'),(726,'CO','CO-CAS','Casanare'),(727,'CO','CO-CAU','Cauca'),(728,'CO','CO-CES','Cesar'),(729,'CO','CO-CHO','Chocó'),(730,'CO','CO-COR','Córdoba'),(731,'CO','CO-CUN','Cundinamarca'),(732,'CO','CO-GUA','Guainía'),(733,'CO','CO-GUV','Guaviare'),(734,'CO','CO-HUL','Huila'),(735,'CO','CO-LAG','La Guajira'),(736,'CO','CO-MAG','Magdalena'),(737,'CO','CO-MET','Meta'),(738,'CO','CO-NAR','Nariño'),(739,'CO','CO-NSA','Norte de Santander'),(740,'CO','CO-PUT','Putumayo'),(741,'CO','CO-QUI','Quindío'),(742,'CO','CO-RIS','Risaralda'),(743,'CO','CO-SAP','San Andrés y Providencia'),(744,'CO','CO-SAN','Santander'),(745,'CO','CO-SUC','Sucre'),(746,'CO','CO-TOL','Tolima'),(747,'CO','CO-VAC','Valle del Cauca'),(748,'CO','CO-VAU','Vaupés'),(749,'CO','CO-VID','Vichada'),(750,'CR','CR-SJ','San José'),(751,'CR','CR-AL','Alajuela'),(752,'CR','CR-CA','Cartago'),(753,'CR','CR-HE','Heredia'),(754,'CR','CR-GU','Guanacaste'),(755,'CR','CR-PU','Puntarenas'),(756,'CR','CR-LI','Limón'),(757,'CZ','CZ-10','Praha, Hlavní město'),(758,'CZ','CZ-20','Středočeský kraj'),(759,'CZ','CZ-31','Jihočeský kraj'),(760,'CZ','CZ-32','Plzeňský kraj'),(761,'CZ','CZ-41','Karlovarský kraj'),(762,'CZ','CZ-42','Ústecký kraj'),(763,'CZ','CZ-51','Liberecký kraj'),(764,'CZ','CZ-52','Královéhradecký kraj'),(765,'CZ','CZ-53','Pardubický kraj'),(766,'CZ','CZ-63','Kraj Vysočina'),(767,'CZ','CZ-64','Jihomoravský kraj'),(768,'CZ','CZ-71','Olomoucký kraj'),(769,'CZ','CZ-72','Zlínský kraj'),(770,'CZ','CZ-80','Moravskoslezský kraj'),(771,'DK','DK-84','Hovedstaden'),(772,'DK','DK-82','Midtjylland'),(773,'DK','DK-81','Nordjylland'),(774,'DK','DK-85','Sjælland'),(775,'DK','DK-83','Syddanmark'),(776,'EC','EC-A','Azuay'),(777,'EC','EC-B','Bolívar'),(778,'EC','EC-F','Cañar'),(779,'EC','EC-C','Carchi'),(780,'EC','EC-H','Chimborazo'),(781,'EC','EC-X','Cotopaxi'),(782,'EC','EC-O','El Oro'),(783,'EC','EC-E','Esmeraldas'),(784,'EC','EC-W','Galápagos'),(785,'EC','EC-G','Guayas'),(786,'EC','EC-I','Imbabura'),(787,'EC','EC-L','Loja'),(788,'EC','EC-R','Los Ríos'),(789,'EC','EC-M','Manabí'),(790,'EC','EC-S','Morona Santiago'),(791,'EC','EC-N','Napo'),(792,'EC','EC-D','Orellana'),(793,'EC','EC-Y','Pastaza'),(794,'EC','EC-P','Pichincha'),(795,'EC','EC-SE','Santa Elena'),(796,'EC','EC-SD','Santo Domingo de los Tsáchilas'),(797,'EC','EC-U','Sucumbíos'),(798,'EC','EC-T','Tungurahua'),(799,'EC','EC-Z','Zamora Chinchipe'),(800,'GR','GR-A','Anatolikí Makedonía kai Thráki'),(801,'GR','GR-I','Attikí'),(802,'GR','GR-G','Dytikí Elláda'),(803,'GR','GR-C','Dytikí Makedonía'),(804,'GR','GR-F','Ionía Nísia'),(805,'GR','GR-D','Ípeiros'),(806,'GR','GR-B','Kentrikí Makedonía'),(807,'GR','GR-M','Kríti'),(808,'GR','GR-L','Nótio Aigaío'),(809,'GR','GR-J','Pelopónnisos'),(810,'GR','GR-H','Stereá Elláda'),(811,'GR','GR-E','Thessalía'),(812,'GR','GR-K','Vóreio Aigaío'),(813,'GR','GR-69','Ágion Óros'),(814,'GY','GY-BA','Barima-Waini'),(815,'GY','GY-CU','Cuyuni-Mazaruni'),(816,'GY','GY-DE','Demerara-Mahaica'),(817,'GY','GY-EB','East Berbice-Corentyne'),(818,'GY','GY-ES','Essequibo Islands-West Demerara'),(819,'GY','GY-MA','Mahaica-Berbice'),(820,'GY','GY-PM','Pomeroon-Supenaam'),(821,'GY','GY-PT','Potaro-Siparuni'),(822,'GY','GY-UD','Upper Demerara-Berbice'),(823,'GY','GY-UT','Upper Takutu-Upper Essequibo'),(824,'IS','IS-01','Höfuðborgarsvæði'),(825,'IS','IS-02','Suðurnes'),(826,'IS','IS-03','Vesturland'),(827,'IS','IS-04','Vestfirðir'),(828,'IS','IS-05','Norðurland vestra'),(829,'IS','IS-06','Norðurland eystra'),(830,'IS','IS-07','Austurland'),(831,'IS','IS-08','Suðurland'),(832,'IT','AG','Agrigento'),(833,'IT','AL','Alessandria'),(834,'IT','AN','Ancona'),(835,'IT','AO','Aosta'),(836,'IT','AQ','L\'Aquila'),(837,'IT','AR','Arezzo'),(838,'IT','AP','Ascoli-Piceno'),(839,'IT','AT','Asti'),(840,'IT','AV','Avellino'),(841,'IT','BA','Bari'),(842,'IT','BT','Barletta-Andria-Trani'),(843,'IT','BL','Belluno'),(844,'IT','BN','Benevento'),(845,'IT','BG','Bergamo'),(846,'IT','BI','Biella'),(847,'IT','BO','Bologna'),(848,'IT','BZ','Bolzano'),(849,'IT','BS','Brescia'),(850,'IT','BR','Brindisi'),(851,'IT','CA','Cagliari'),(852,'IT','CL','Caltanissetta'),(853,'IT','CB','Campobasso'),(854,'IT','CI','Carbonia Iglesias'),(855,'IT','CE','Caserta'),(856,'IT','CT','Catania'),(857,'IT','CZ','Catanzaro'),(858,'IT','CH','Chieti'),(859,'IT','CO','Como'),(860,'IT','CS','Cosenza'),(861,'IT','CR','Cremona'),(862,'IT','KR','Crotone'),(863,'IT','CN','Cuneo'),(864,'IT','EN','Enna'),(865,'IT','FM','Fermo'),(866,'IT','FE','Ferrara'),(867,'IT','FI','Firenze'),(868,'IT','FG','Foggia'),(869,'IT','FC','Forli-Cesena'),(870,'IT','FR','Frosinone'),(871,'IT','GE','Genova'),(872,'IT','GO','Gorizia'),(873,'IT','GR','Grosseto'),(874,'IT','IM','Imperia'),(875,'IT','IS','Isernia'),(876,'IT','SP','La-Spezia'),(877,'IT','LT','Latina'),(878,'IT','LE','Lecce'),(879,'IT','LC','Lecco'),(880,'IT','LI','Livorno'),(881,'IT','LO','Lodi'),(882,'IT','LU','Lucca'),(883,'IT','MC','Macerata'),(884,'IT','MN','Mantova'),(885,'IT','MS','Massa-Carrara'),(886,'IT','MT','Matera'),(887,'IT','VS','Medio Campidano'),(888,'IT','ME','Messina'),(889,'IT','MI','Milano'),(890,'IT','MO','Modena'),(891,'IT','MB','Monza-Brianza'),(892,'IT','NA','Napoli'),(893,'IT','NO','Novara'),(894,'IT','NU','Nuoro'),(895,'IT','OG','Ogliastra'),(896,'IT','OT','Olbia Tempio'),(897,'IT','OR','Oristano'),(898,'IT','PD','Padova'),(899,'IT','PA','Palermo'),(900,'IT','PR','Parma'),(901,'IT','PV','Pavia'),(902,'IT','PG','Perugia'),(903,'IT','PU','Pesaro-Urbino'),(904,'IT','PE','Pescara'),(905,'IT','PC','Piacenza'),(906,'IT','PI','Pisa'),(907,'IT','PT','Pistoia'),(908,'IT','PN','Pordenone'),(909,'IT','PZ','Potenza'),(910,'IT','PO','Prato'),(911,'IT','RG','Ragusa'),(912,'IT','RA','Ravenna'),(913,'IT','RC','Reggio-Calabria'),(914,'IT','RE','Reggio-Emilia'),(915,'IT','RI','Rieti'),(916,'IT','RN','Rimini'),(917,'IT','RM','Roma'),(918,'IT','RO','Rovigo'),(919,'IT','SA','Salerno'),(920,'IT','SS','Sassari'),(921,'IT','SV','Savona'),(922,'IT','SI','Siena'),(923,'IT','SR','Siracusa'),(924,'IT','SO','Sondrio'),(925,'IT','TA','Taranto'),(926,'IT','TE','Teramo'),(927,'IT','TR','Terni'),(928,'IT','TO','Torino'),(929,'IT','TP','Trapani'),(930,'IT','TN','Trento'),(931,'IT','TV','Treviso'),(932,'IT','TS','Trieste'),(933,'IT','UD','Udine'),(934,'IT','VA','Varese'),(935,'IT','VE','Venezia'),(936,'IT','VB','Verbania'),(937,'IT','VC','Vercelli'),(938,'IT','VR','Verona'),(939,'IT','VV','Vibo-Valentia'),(940,'IT','VI','Vicenza'),(941,'IT','VT','Viterbo'),(942,'MX','AGU','Aguascalientes'),(943,'MX','BCN','Baja California'),(944,'MX','BCS','Baja California Sur'),(945,'MX','CAM','Campeche'),(946,'MX','CHP','Chiapas'),(947,'MX','CHH','Chihuahua'),(948,'MX','CMX','Ciudad de México'),(949,'MX','COA','Coahuila'),(950,'MX','COL','Colima'),(951,'MX','DUR','Durango'),(952,'MX','MEX','Estado de México'),(953,'MX','GUA','Guanajuato'),(954,'MX','GRO','Guerrero'),(955,'MX','HID','Hidalgo'),(956,'MX','JAL','Jalisco'),(957,'MX','MIC','Michoacán'),(958,'MX','MOR','Morelos'),(959,'MX','NAY','Nayarit'),(960,'MX','NLE','Nuevo León'),(961,'MX','OAX','Oaxaca'),(962,'MX','PUE','Puebla'),(963,'MX','QUE','Querétaro'),(964,'MX','ROO','Quintana Roo'),(965,'MX','SLP','San Luis Potosí'),(966,'MX','SIN','Sinaloa'),(967,'MX','SON','Sonora'),(968,'MX','TAB','Tabasco'),(969,'MX','TAM','Tamaulipas'),(970,'MX','TLA','Tlaxcala'),(971,'MX','VER','Veracruz'),(972,'MX','YUC','Yucatán'),(973,'MX','ZAC','Zacatecas'),(974,'PY','PY-ASU','Asunción'),(975,'PY','PY-16','Alto Paraguay'),(976,'PY','PY-10','Alto Paraná'),(977,'PY','PY-13','Amambay'),(978,'PY','PY-19','Boquerón'),(979,'PY','PY-5','Caaguazú'),(980,'PY','PY-6','Caazapá'),(981,'PY','PY-14','Canindeyú'),(982,'PY','PY-11','Central'),(983,'PY','PY-1','Concepción'),(984,'PY','PY-3','Cordillera'),(985,'PY','PY-4','Guairá'),(986,'PY','PY-7','Itapúa'),(987,'PY','PY-8','Misiones'),(988,'PY','PY-12','Ñeembucú'),(989,'PY','PY-9','Paraguarí'),(990,'PY','PY-15','Presidente Hayes'),(991,'PY','PY-2','San Pedro'),(992,'PE','PE-LMA','Municipalidad Metropolitana de Lima'),(993,'PE','PE-AMA','Amazonas'),(994,'PE','PE-ANC','Ancash'),(995,'PE','PE-APU','Apurímac'),(996,'PE','PE-ARE','Arequipa'),(997,'PE','PE-AYA','Ayacucho'),(998,'PE','PE-CAJ','Cajamarca'),(999,'PE','PE-CUS','Cusco'),(1000,'PE','PE-CAL','El Callao'),(1001,'PE','PE-HUV','Huancavelica'),(1002,'PE','PE-HUC','Huánuco'),(1003,'PE','PE-ICA','Ica'),(1004,'PE','PE-JUN','Junín'),(1005,'PE','PE-LAL','La Libertad'),(1006,'PE','PE-LAM','Lambayeque'),(1007,'PE','PE-LIM','Lima'),(1008,'PE','PE-LOR','Loreto'),(1009,'PE','PE-MDD','Madre de Dios'),(1010,'PE','PE-MOQ','Moquegua'),(1011,'PE','PE-PAS','Pasco'),(1012,'PE','PE-PIU','Piura'),(1013,'PE','PE-PUN','Puno'),(1014,'PE','PE-SAM','San Martín'),(1015,'PE','PE-TAC','Tacna'),(1016,'PE','PE-TUM','Tumbes'),(1017,'PE','PE-UCA','Ucayali'),(1018,'PL','PL-02','dolnośląskie'),(1019,'PL','PL-04','kujawsko-pomorskie'),(1020,'PL','PL-06','lubelskie'),(1021,'PL','PL-08','lubuskie'),(1022,'PL','PL-10','łódzkie'),(1023,'PL','PL-12','małopolskie'),(1024,'PL','PL-14','mazowieckie'),(1025,'PL','PL-16','opolskie'),(1026,'PL','PL-18','podkarpackie'),(1027,'PL','PL-20','podlaskie'),(1028,'PL','PL-22','pomorskie'),(1029,'PL','PL-24','śląskie'),(1030,'PL','PL-26','świętokrzyskie'),(1031,'PL','PL-28','warmińsko-mazurskie'),(1032,'PL','PL-30','wielkopolskie'),(1033,'PL','PL-32','zachodniopomorskie'),(1034,'PT','PT-01','Aveiro'),(1035,'PT','PT-02','Beja'),(1036,'PT','PT-03','Braga'),(1037,'PT','PT-04','Bragança'),(1038,'PT','PT-05','Castelo Branco'),(1039,'PT','PT-06','Coimbra'),(1040,'PT','PT-07','Évora'),(1041,'PT','PT-08','Faro'),(1042,'PT','PT-09','Guarda'),(1043,'PT','PT-10','Leiria'),(1044,'PT','PT-11','Lisboa'),(1045,'PT','PT-12','Portalegre'),(1046,'PT','PT-13','Porto'),(1047,'PT','PT-14','Santarém'),(1048,'PT','PT-15','Setúbal'),(1049,'PT','PT-16','Viana do Castelo'),(1050,'PT','PT-17','Vila Real'),(1051,'PT','PT-18','Viseu'),(1052,'PT','PT-20','Região Autónoma dos Açores'),(1053,'PT','PT-30','Região Autónoma da Madeira'),(1054,'SR','SR-BR','Brokopondo'),(1055,'SR','SR-CM','Commewijne'),(1056,'SR','SR-CR','Coronie'),(1057,'SR','SR-MA','Marowijne'),(1058,'SR','SR-NI','Nickerie'),(1059,'SR','SR-PR','Para'),(1060,'SR','SR-PM','Paramaribo'),(1061,'SR','SR-SA','Saramacca'),(1062,'SR','SR-SI','Sipaliwini'),(1063,'SR','SR-WA','Wanica'),(1064,'SE','SE-K','Blekinge län'),(1065,'SE','SE-W','Dalarnas län'),(1066,'SE','SE-I','Gotlands län'),(1067,'SE','SE-X','Gävleborgs län'),(1068,'SE','SE-N','Hallands län'),(1069,'SE','SE-Z','Jämtlands län'),(1070,'SE','SE-F','Jönköpings län'),(1071,'SE','SE-H','Kalmar län'),(1072,'SE','SE-G','Kronobergs län'),(1073,'SE','SE-BD','Norrbottens län'),(1074,'SE','SE-M','Skåne län'),(1075,'SE','SE-AB','Stockholms län'),(1076,'SE','SE-D','Södermanlands län'),(1077,'SE','SE-C','Uppsala län'),(1078,'SE','SE-S','Värmlands län'),(1079,'SE','SE-AC','Västerbottens län'),(1080,'SE','SE-Y','Västernorrlands län'),(1081,'SE','SE-U','Västmanlands län'),(1082,'SE','SE-O','Västra Götalands län'),(1083,'SE','SE-T','Örebro län'),(1084,'SE','SE-E','Östergötlands län'),(1085,'UA','UA-71','Cherkaska oblast'),(1086,'UA','UA-74','Chernihivska oblast'),(1087,'UA','UA-77','Chernivetska oblast'),(1088,'UA','UA-12','Dnipropetrovska oblast'),(1089,'UA','UA-14','Donetska oblast'),(1090,'UA','UA-26','Ivano-Frankivska oblast'),(1091,'UA','UA-63','Kharkivska oblast'),(1092,'UA','UA-65','Khersonska oblast'),(1093,'UA','UA-68','Khmelnytska oblast'),(1094,'UA','UA-35','Kirovohradska oblast'),(1095,'UA','UA-32','Kyivska oblast'),(1096,'UA','UA-09','Luhanska oblast'),(1097,'UA','UA-46','Lvivska oblast'),(1098,'UA','UA-48','Mykolaivska oblast'),(1099,'UA','UA-51','Odeska oblast'),(1100,'UA','UA-53','Poltavska oblast'),(1101,'UA','UA-56','Rivnenska oblast'),(1102,'UA','UA-59','Sumska oblast'),(1103,'UA','UA-61','Ternopilska oblast'),(1104,'UA','UA-05','Vinnytska oblast'),(1105,'UA','UA-07','Volynska oblast'),(1106,'UA','UA-21','Zakarpatska oblast'),(1107,'UA','UA-23','Zaporizka oblast'),(1108,'UA','UA-18','Zhytomyrska oblast'),(1109,'UA','UA-43','Avtonomna Respublika Krym'),(1110,'UA','UA-30','Kyiv'),(1111,'UA','UA-40','Sevastopol'),(1112,'UY','UY-AR','Artigas'),(1113,'UY','UY-CA','Canelones'),(1114,'UY','UY-CL','Cerro Largo'),(1115,'UY','UY-CO','Colonia'),(1116,'UY','UY-DU','Durazno'),(1117,'UY','UY-FS','Flores'),(1118,'UY','UY-FD','Florida'),(1119,'UY','UY-LA','Lavalleja'),(1120,'UY','UY-MA','Maldonado'),(1121,'UY','UY-MO','Montevideo'),(1122,'UY','UY-PA','Paysandu'),(1123,'UY','UY-RN','Río Negro'),(1124,'UY','UY-RV','Rivera'),(1125,'UY','UY-RO','Rocha'),(1126,'UY','UY-SA','Salto'),(1127,'UY','UY-SJ','San José'),(1128,'UY','UY-SO','Soriano'),(1129,'UY','UY-TA','Tacuarembó'),(1130,'UY','UY-TT','Treinta y Tres'),(1131,'VE','VE-W','Dependencias Federales'),(1132,'VE','VE-A','Distrito Capital'),(1133,'VE','VE-Z','Amazonas'),(1134,'VE','VE-B','Anzoátegui'),(1135,'VE','VE-C','Apure'),(1136,'VE','VE-D','Aragua'),(1137,'VE','VE-E','Barinas'),(1138,'VE','VE-F','Bolívar'),(1139,'VE','VE-G','Carabobo'),(1140,'VE','VE-H','Cojedes'),(1141,'VE','VE-Y','Delta Amacuro'),(1142,'VE','VE-I','Falcón'),(1143,'VE','VE-J','Guárico'),(1144,'VE','VE-K','Lara'),(1145,'VE','VE-L','Mérida'),(1146,'VE','VE-M','Miranda'),(1147,'VE','VE-N','Monagas'),(1148,'VE','VE-O','Nueva Esparta'),(1149,'VE','VE-P','Portuguesa'),(1150,'VE','VE-R','Sucre'),(1151,'VE','VE-S','Táchira'),(1152,'VE','VE-T','Trujillo'),(1153,'VE','VE-X','Vargas'),(1154,'VE','VE-U','Yaracuy'),(1155,'VE','VE-V','Zulia'),(1156,'IN','LA','Ladakh'); /*!40000 ALTER TABLE `directory_country_region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_region_name` -- DROP TABLE IF EXISTS `directory_country_region_name`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `directory_country_region_name` ( `locale` varchar(16) NOT NULL COMMENT 'Locale', `region_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Region ID', `name` varchar(255) DEFAULT NULL COMMENT 'Region Name', PRIMARY KEY (`locale`,`region_id`), KEY `DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`), CONSTRAINT `DIR_COUNTRY_REGION_NAME_REGION_ID_DIR_COUNTRY_REGION_REGION_ID` FOREIGN KEY (`region_id`) REFERENCES `directory_country_region` (`region_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Country Region Name'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `directory_country_region_name` -- LOCK TABLES `directory_country_region_name` WRITE; /*!40000 ALTER TABLE `directory_country_region_name` DISABLE KEYS */; INSERT INTO `directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Vorarlberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Friburg'),('en_US',111,'Geneva'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Lucerne'),('en_US',116,'Neuchâtel'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Ticino'),('en_US',125,'Uri'),('en_US',126,'Vaud'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'),('en_US',485,'Acre'),('en_US',486,'Alagoas'),('en_US',487,'Amapá'),('en_US',488,'Amazonas'),('en_US',489,'Bahia'),('en_US',490,'Ceará'),('en_US',491,'Espírito Santo'),('en_US',492,'Goiás'),('en_US',493,'Maranhão'),('en_US',494,'Mato Grosso'),('en_US',495,'Mato Grosso do Sul'),('en_US',496,'Minas Gerais'),('en_US',497,'Pará'),('en_US',498,'Paraíba'),('en_US',499,'Paraná'),('en_US',500,'Pernambuco'),('en_US',501,'Piauí'),('en_US',502,'Rio de Janeiro'),('en_US',503,'Rio Grande do Norte'),('en_US',504,'Rio Grande do Sul'),('en_US',505,'Rondônia'),('en_US',506,'Roraima'),('en_US',507,'Santa Catarina'),('en_US',508,'São Paulo'),('en_US',509,'Sergipe'),('en_US',510,'Tocantins'),('en_US',511,'Distrito Federal'),('en_US',512,'Berat'),('en_US',513,'Dibër'),('en_US',514,'Durrës'),('en_US',515,'Elbasan'),('en_US',516,'Fier'),('en_US',517,'Gjirokastër'),('en_US',518,'Korçë'),('en_US',519,'Kukës'),('en_US',520,'Lezhë'),('en_US',521,'Shkodër'),('en_US',522,'Tiranë'),('en_US',523,'Vlorë'),('en_US',524,'Ciudad Autónoma de Buenos Aires'),('en_US',525,'Buenos Aires'),('en_US',526,'Catamarca'),('en_US',527,'Chaco'),('en_US',528,'Chubut'),('en_US',529,'Córdoba'),('en_US',530,'Corrientes'),('en_US',531,'Entre Ríos'),('en_US',532,'Formosa'),('en_US',533,'Jujuy'),('en_US',534,'La Pampa'),('en_US',535,'La Rioja'),('en_US',536,'Mendoza'),('en_US',537,'Misiones'),('en_US',538,'Neuquén'),('en_US',539,'Río Negro'),('en_US',540,'Salta'),('en_US',541,'San Juan'),('en_US',542,'San Luis'),('en_US',543,'Santa Cruz'),('en_US',544,'Santa Fe'),('en_US',545,'Santiago del Estero'),('en_US',546,'Tierra del Fuego'),('en_US',547,'Tucumán'),('en_US',548,'Zagrebačka županija'),('en_US',549,'Krapinsko-zagorska županija'),('en_US',550,'Sisačko-moslavačka županija'),('en_US',551,'Karlovačka županija'),('en_US',552,'Varaždinska županija'),('en_US',553,'Koprivničko-križevačka županija'),('en_US',554,'Bjelovarsko-bilogorska županija'),('en_US',555,'Primorsko-goranska županija'),('en_US',556,'Ličko-senjska županija'),('en_US',557,'Virovitičko-podravska županija'),('en_US',558,'Požeško-slavonska županija'),('en_US',559,'Brodsko-posavska županija'),('en_US',560,'Zadarska županija'),('en_US',561,'Osječko-baranjska županija'),('en_US',562,'Šibensko-kninska županija'),('en_US',563,'Vukovarsko-srijemska županija'),('en_US',564,'Splitsko-dalmatinska županija'),('en_US',565,'Istarska županija'),('en_US',566,'Dubrovačko-neretvanska županija'),('en_US',567,'Međimurska županija'),('en_US',568,'Grad Zagreb'),('en_US',569,'Andaman and Nicobar Islands'),('en_US',570,'Andhra Pradesh'),('en_US',571,'Arunachal Pradesh'),('en_US',572,'Assam'),('en_US',573,'Bihar'),('en_US',574,'Chandigarh'),('en_US',575,'Chhattisgarh'),('en_US',576,'Dadra and Nagar Haveli'),('en_US',577,'Daman and Diu'),('en_US',578,'Delhi'),('en_US',579,'Goa'),('en_US',580,'Gujarat'),('en_US',581,'Haryana'),('en_US',582,'Himachal Pradesh'),('en_US',583,'Jammu and Kashmir'),('en_US',584,'Jharkhand'),('en_US',585,'Karnataka'),('en_US',586,'Kerala'),('en_US',587,'Lakshadweep'),('en_US',588,'Madhya Pradesh'),('en_US',589,'Maharashtra'),('en_US',590,'Manipur'),('en_US',591,'Meghalaya'),('en_US',592,'Mizoram'),('en_US',593,'Nagaland'),('en_US',594,'Odisha'),('en_US',595,'Puducherry'),('en_US',596,'Punjab'),('en_US',597,'Rajasthan'),('en_US',598,'Sikkim'),('en_US',599,'Tamil Nadu'),('en_US',600,'Telangana'),('en_US',601,'Tripura'),('en_US',602,'Uttar Pradesh'),('en_US',603,'Uttarakhand'),('en_US',604,'West Bengal'),('en_US',605,'Australian Capital Territory'),('en_US',606,'New South Wales'),('en_US',607,'Victoria'),('en_US',608,'Queensland'),('en_US',609,'South Australia'),('en_US',610,'Tasmania'),('en_US',611,'Western Australia'),('en_US',612,'Northern Territory'),('en_US',613,'Bresckaja voblasć'),('en_US',614,'Homieĺskaja voblasć'),('en_US',615,'Horad Minsk'),('en_US',616,'Hrodzienskaja voblasć'),('en_US',617,'Mahilioŭskaja voblasć'),('en_US',618,'Minskaja voblasć'),('en_US',619,'Viciebskaja voblasć'),('en_US',620,'Antwerpen'),('en_US',621,'Brabant wallon'),('en_US',622,'Brussels-Capital Region'),('en_US',623,'Hainaut'),('en_US',624,'Limburg'),('en_US',625,'Liège'),('en_US',626,'Luxembourg'),('en_US',627,'Namur'),('en_US',628,'Oost-Vlaanderen'),('en_US',629,'Vlaams-Brabant'),('en_US',630,'West-Vlaanderen'),('en_US',631,'Cochabamba'),('en_US',632,'Chuquisaca'),('en_US',633,'El Beni'),('en_US',634,'La Paz'),('en_US',635,'Oruro'),('en_US',636,'Pando'),('en_US',637,'Potosí'),('en_US',638,'Santa Cruz'),('en_US',639,'Tarija'),('en_US',640,'Blagoevgrad'),('en_US',641,'Burgas'),('en_US',642,'Varna'),('en_US',643,'Veliko Tarnovo'),('en_US',644,'Vidin'),('en_US',645,'Vratsa'),('en_US',646,'Gabrovo'),('en_US',647,'Dobrich'),('en_US',648,'Kardzhali'),('en_US',649,'Kyustendil'),('en_US',650,'Lovech'),('en_US',651,'Montana'),('en_US',652,'Pazardzhik'),('en_US',653,'Pernik'),('en_US',654,'Pleven'),('en_US',655,'Plovdiv'),('en_US',656,'Razgrad'),('en_US',657,'Ruse'),('en_US',658,'Silistra'),('en_US',659,'Sliven'),('en_US',660,'Smolyan'),('en_US',661,'Sofia City'),('en_US',662,'Sofia Province'),('en_US',663,'Stara Zagora'),('en_US',664,'Targovishte'),('en_US',665,'Haskovo'),('en_US',666,'Shumen'),('en_US',667,'Yambol'),('en_US',668,'Aisén del General Carlos Ibañez del Campo'),('en_US',669,'Antofagasta'),('en_US',670,'Arica y Parinacota'),('en_US',671,'La Araucanía'),('en_US',672,'Atacama'),('en_US',673,'Biobío'),('en_US',674,'Coquimbo'),('en_US',675,'Libertador General Bernardo O\'Higgins'),('en_US',676,'Los Lagos'),('en_US',677,'Los Ríos'),('en_US',678,'Magallanes'),('en_US',679,'Maule'),('en_US',680,'Ñuble'),('en_US',681,'Región Metropolitana de Santiago'),('en_US',682,'Tarapacá'),('en_US',683,'Valparaíso'),('en_US',684,'Anhui Sheng'),('en_US',685,'Beijing Shi'),('en_US',686,'Chongqing Shi'),('en_US',687,'Fujian Sheng'),('en_US',688,'Gansu Sheng'),('en_US',689,'Guangdong Sheng'),('en_US',690,'Guangxi Zhuangzu Zizhiqu'),('en_US',691,'Guizhou Sheng'),('en_US',692,'Hainan Sheng'),('en_US',693,'Hebei Sheng'),('en_US',694,'Heilongjiang Sheng'),('en_US',695,'Henan Sheng'),('en_US',696,'Hong Kong SAR'),('en_US',697,'Hubei Sheng'),('en_US',698,'Hunan Sheng'),('en_US',699,'Jiangsu Sheng'),('en_US',700,'Jiangxi Sheng'),('en_US',701,'Jilin Sheng'),('en_US',702,'Liaoning Sheng'),('en_US',703,'Macao SAR'),('en_US',704,'Nei Mongol Zizhiqu'),('en_US',705,'Ningxia Huizi Zizhiqu'),('en_US',706,'Qinghai Sheng'),('en_US',707,'Shaanxi Sheng'),('en_US',708,'Shandong Sheng'),('en_US',709,'Shanghai Shi'),('en_US',710,'Shanxi Sheng'),('en_US',711,'Sichuan Sheng'),('en_US',712,'Taiwan Sheng'),('en_US',713,'Tianjin Shi'),('en_US',714,'Xinjiang Uygur Zizhiqu'),('en_US',715,'Xizang Zizhiqu'),('en_US',716,'Yunnan Sheng'),('en_US',717,'Zhejiang Sheng'),('en_US',718,'Amazonas'),('en_US',719,'Antioquia'),('en_US',720,'Arauca'),('en_US',721,'Atlántico'),('en_US',722,'Bolívar'),('en_US',723,'Boyacá'),('en_US',724,'Caldas'),('en_US',725,'Caquetá'),('en_US',726,'Casanare'),('en_US',727,'Cauca'),('en_US',728,'Cesar'),('en_US',729,'Chocó'),('en_US',730,'Córdoba'),('en_US',731,'Cundinamarca'),('en_US',732,'Guainía'),('en_US',733,'Guaviare'),('en_US',734,'Huila'),('en_US',735,'La Guajira'),('en_US',736,'Magdalena'),('en_US',737,'Meta'),('en_US',738,'Nariño'),('en_US',739,'Norte de Santander'),('en_US',740,'Putumayo'),('en_US',741,'Quindío'),('en_US',742,'Risaralda'),('en_US',743,'San Andrés y Providencia'),('en_US',744,'Santander'),('en_US',745,'Sucre'),('en_US',746,'Tolima'),('en_US',747,'Valle del Cauca'),('en_US',748,'Vaupés'),('en_US',749,'Vichada'),('en_US',750,'San José'),('en_US',751,'Alajuela'),('en_US',752,'Cartago'),('en_US',753,'Heredia'),('en_US',754,'Guanacaste'),('en_US',755,'Puntarenas'),('en_US',756,'Limón'),('en_US',757,'Praha, Hlavní město'),('en_US',758,'Středočeský kraj'),('en_US',759,'Jihočeský kraj'),('en_US',760,'Plzeňský kraj'),('en_US',761,'Karlovarský kraj'),('en_US',762,'Ústecký kraj'),('en_US',763,'Liberecký kraj'),('en_US',764,'Královéhradecký kraj'),('en_US',765,'Pardubický kraj'),('en_US',766,'Kraj Vysočina'),('en_US',767,'Jihomoravský kraj'),('en_US',768,'Olomoucký kraj'),('en_US',769,'Zlínský kraj'),('en_US',770,'Moravskoslezský kraj'),('en_US',771,'Hovedstaden'),('en_US',772,'Midtjylland'),('en_US',773,'Nordjylland'),('en_US',774,'Sjælland'),('en_US',775,'Syddanmark'),('en_US',776,'Azuay'),('en_US',777,'Bolívar'),('en_US',778,'Cañar'),('en_US',779,'Carchi'),('en_US',780,'Chimborazo'),('en_US',781,'Cotopaxi'),('en_US',782,'El Oro'),('en_US',783,'Esmeraldas'),('en_US',784,'Galápagos'),('en_US',785,'Guayas'),('en_US',786,'Imbabura'),('en_US',787,'Loja'),('en_US',788,'Los Ríos'),('en_US',789,'Manabí'),('en_US',790,'Morona Santiago'),('en_US',791,'Napo'),('en_US',792,'Orellana'),('en_US',793,'Pastaza'),('en_US',794,'Pichincha'),('en_US',795,'Santa Elena'),('en_US',796,'Santo Domingo de los Tsáchilas'),('en_US',797,'Sucumbíos'),('en_US',798,'Tungurahua'),('en_US',799,'Zamora Chinchipe'),('en_US',800,'Anatolikí Makedonía kai Thráki'),('en_US',801,'Attikí'),('en_US',802,'Dytikí Elláda'),('en_US',803,'Dytikí Makedonía'),('en_US',804,'Ionía Nísia'),('en_US',805,'Ípeiros'),('en_US',806,'Kentrikí Makedonía'),('en_US',807,'Kríti'),('en_US',808,'Nótio Aigaío'),('en_US',809,'Pelopónnisos'),('en_US',810,'Stereá Elláda'),('en_US',811,'Thessalía'),('en_US',812,'Vóreio Aigaío'),('en_US',813,'Ágion Óros'),('en_US',814,'Barima-Waini'),('en_US',815,'Cuyuni-Mazaruni'),('en_US',816,'Demerara-Mahaica'),('en_US',817,'East Berbice-Corentyne'),('en_US',818,'Essequibo Islands-West Demerara'),('en_US',819,'Mahaica-Berbice'),('en_US',820,'Pomeroon-Supenaam'),('en_US',821,'Potaro-Siparuni'),('en_US',822,'Upper Demerara-Berbice'),('en_US',823,'Upper Takutu-Upper Essequibo'),('en_US',824,'Höfuðborgarsvæði'),('en_US',825,'Suðurnes'),('en_US',826,'Vesturland'),('en_US',827,'Vestfirðir'),('en_US',828,'Norðurland vestra'),('en_US',829,'Norðurland eystra'),('en_US',830,'Austurland'),('en_US',831,'Suðurland'),('en_US',832,'Agrigento'),('en_US',833,'Alessandria'),('en_US',834,'Ancona'),('en_US',835,'Aosta'),('en_US',836,'L\'Aquila'),('en_US',837,'Arezzo'),('en_US',838,'Ascoli-Piceno'),('en_US',839,'Asti'),('en_US',840,'Avellino'),('en_US',841,'Bari'),('en_US',842,'Barletta-Andria-Trani'),('en_US',843,'Belluno'),('en_US',844,'Benevento'),('en_US',845,'Bergamo'),('en_US',846,'Biella'),('en_US',847,'Bologna'),('en_US',848,'Bolzano'),('en_US',849,'Brescia'),('en_US',850,'Brindisi'),('en_US',851,'Cagliari'),('en_US',852,'Caltanissetta'),('en_US',853,'Campobasso'),('en_US',854,'Carbonia Iglesias'),('en_US',855,'Caserta'),('en_US',856,'Catania'),('en_US',857,'Catanzaro'),('en_US',858,'Chieti'),('en_US',859,'Como'),('en_US',860,'Cosenza'),('en_US',861,'Cremona'),('en_US',862,'Crotone'),('en_US',863,'Cuneo'),('en_US',864,'Enna'),('en_US',865,'Fermo'),('en_US',866,'Ferrara'),('en_US',867,'Firenze'),('en_US',868,'Foggia'),('en_US',869,'Forli-Cesena'),('en_US',870,'Frosinone'),('en_US',871,'Genova'),('en_US',872,'Gorizia'),('en_US',873,'Grosseto'),('en_US',874,'Imperia'),('en_US',875,'Isernia'),('en_US',876,'La-Spezia'),('en_US',877,'Latina'),('en_US',878,'Lecce'),('en_US',879,'Lecco'),('en_US',880,'Livorno'),('en_US',881,'Lodi'),('en_US',882,'Lucca'),('en_US',883,'Macerata'),('en_US',884,'Mantova'),('en_US',885,'Massa-Carrara'),('en_US',886,'Matera'),('en_US',887,'Medio Campidano'),('en_US',888,'Messina'),('en_US',889,'Milano'),('en_US',890,'Modena'),('en_US',891,'Monza-Brianza'),('en_US',892,'Napoli'),('en_US',893,'Novara'),('en_US',894,'Nuoro'),('en_US',895,'Ogliastra'),('en_US',896,'Olbia Tempio'),('en_US',897,'Oristano'),('en_US',898,'Padova'),('en_US',899,'Palermo'),('en_US',900,'Parma'),('en_US',901,'Pavia'),('en_US',902,'Perugia'),('en_US',903,'Pesaro-Urbino'),('en_US',904,'Pescara'),('en_US',905,'Piacenza'),('en_US',906,'Pisa'),('en_US',907,'Pistoia'),('en_US',908,'Pordenone'),('en_US',909,'Potenza'),('en_US',910,'Prato'),('en_US',911,'Ragusa'),('en_US',912,'Ravenna'),('en_US',913,'Reggio-Calabria'),('en_US',914,'Reggio-Emilia'),('en_US',915,'Rieti'),('en_US',916,'Rimini'),('en_US',917,'Roma'),('en_US',918,'Rovigo'),('en_US',919,'Salerno'),('en_US',920,'Sassari'),('en_US',921,'Savona'),('en_US',922,'Siena'),('en_US',923,'Siracusa'),('en_US',924,'Sondrio'),('en_US',925,'Taranto'),('en_US',926,'Teramo'),('en_US',927,'Terni'),('en_US',928,'Torino'),('en_US',929,'Trapani'),('en_US',930,'Trento'),('en_US',931,'Treviso'),('en_US',932,'Trieste'),('en_US',933,'Udine'),('en_US',934,'Varese'),('en_US',935,'Venezia'),('en_US',936,'Verbania'),('en_US',937,'Vercelli'),('en_US',938,'Verona'),('en_US',939,'Vibo-Valentia'),('en_US',940,'Vicenza'),('en_US',941,'Viterbo'),('en_US',942,'Aguascalientes'),('en_US',943,'Baja California'),('en_US',944,'Baja California Sur'),('en_US',945,'Campeche'),('en_US',946,'Chiapas'),('en_US',947,'Chihuahua'),('en_US',948,'Ciudad de México'),('en_US',949,'Coahuila'),('en_US',950,'Colima'),('en_US',951,'Durango'),('en_US',952,'Estado de México'),('en_US',953,'Guanajuato'),('en_US',954,'Guerrero'),('en_US',955,'Hidalgo'),('en_US',956,'Jalisco'),('en_US',957,'Michoacán'),('en_US',958,'Morelos'),('en_US',959,'Nayarit'),('en_US',960,'Nuevo León'),('en_US',961,'Oaxaca'),('en_US',962,'Puebla'),('en_US',963,'Querétaro'),('en_US',964,'Quintana Roo'),('en_US',965,'San Luis Potosí'),('en_US',966,'Sinaloa'),('en_US',967,'Sonora'),('en_US',968,'Tabasco'),('en_US',969,'Tamaulipas'),('en_US',970,'Tlaxcala'),('en_US',971,'Veracruz'),('en_US',972,'Yucatán'),('en_US',973,'Zacatecas'),('en_US',974,'Asunción'),('en_US',975,'Alto Paraguay'),('en_US',976,'Alto Paraná'),('en_US',977,'Amambay'),('en_US',978,'Boquerón'),('en_US',979,'Caaguazú'),('en_US',980,'Caazapá'),('en_US',981,'Canindeyú'),('en_US',982,'Central'),('en_US',983,'Concepción'),('en_US',984,'Cordillera'),('en_US',985,'Guairá'),('en_US',986,'Itapúa'),('en_US',987,'Misiones'),('en_US',988,'Ñeembucú'),('en_US',989,'Paraguarí'),('en_US',990,'Presidente Hayes'),('en_US',991,'San Pedro'),('en_US',992,'Municipalidad Metropolitana de Lima'),('en_US',993,'Amazonas'),('en_US',994,'Ancash'),('en_US',995,'Apurímac'),('en_US',996,'Arequipa'),('en_US',997,'Ayacucho'),('en_US',998,'Cajamarca'),('en_US',999,'Cusco'),('en_US',1000,'El Callao'),('en_US',1001,'Huancavelica'),('en_US',1002,'Huánuco'),('en_US',1003,'Ica'),('en_US',1004,'Junín'),('en_US',1005,'La Libertad'),('en_US',1006,'Lambayeque'),('en_US',1007,'Lima'),('en_US',1008,'Loreto'),('en_US',1009,'Madre de Dios'),('en_US',1010,'Moquegua'),('en_US',1011,'Pasco'),('en_US',1012,'Piura'),('en_US',1013,'Puno'),('en_US',1014,'San Martín'),('en_US',1015,'Tacna'),('en_US',1016,'Tumbes'),('en_US',1017,'Ucayali'),('en_US',1018,'dolnośląskie'),('en_US',1019,'kujawsko-pomorskie'),('en_US',1020,'lubelskie'),('en_US',1021,'lubuskie'),('en_US',1022,'łódzkie'),('en_US',1023,'małopolskie'),('en_US',1024,'mazowieckie'),('en_US',1025,'opolskie'),('en_US',1026,'podkarpackie'),('en_US',1027,'podlaskie'),('en_US',1028,'pomorskie'),('en_US',1029,'śląskie'),('en_US',1030,'świętokrzyskie'),('en_US',1031,'warmińsko-mazurskie'),('en_US',1032,'wielkopolskie'),('en_US',1033,'zachodniopomorskie'),('en_US',1034,'Aveiro'),('en_US',1035,'Beja'),('en_US',1036,'Braga'),('en_US',1037,'Bragança'),('en_US',1038,'Castelo Branco'),('en_US',1039,'Coimbra'),('en_US',1040,'Évora'),('en_US',1041,'Faro'),('en_US',1042,'Guarda'),('en_US',1043,'Leiria'),('en_US',1044,'Lisboa'),('en_US',1045,'Portalegre'),('en_US',1046,'Porto'),('en_US',1047,'Santarém'),('en_US',1048,'Setúbal'),('en_US',1049,'Viana do Castelo'),('en_US',1050,'Vila Real'),('en_US',1051,'Viseu'),('en_US',1052,'Região Autónoma dos Açores'),('en_US',1053,'Região Autónoma da Madeira'),('en_US',1054,'Brokopondo'),('en_US',1055,'Commewijne'),('en_US',1056,'Coronie'),('en_US',1057,'Marowijne'),('en_US',1058,'Nickerie'),('en_US',1059,'Para'),('en_US',1060,'Paramaribo'),('en_US',1061,'Saramacca'),('en_US',1062,'Sipaliwini'),('en_US',1063,'Wanica'),('en_US',1064,'Blekinge län'),('en_US',1065,'Dalarnas län'),('en_US',1066,'Gotlands län'),('en_US',1067,'Gävleborgs län'),('en_US',1068,'Hallands län'),('en_US',1069,'Jämtlands län'),('en_US',1070,'Jönköpings län'),('en_US',1071,'Kalmar län'),('en_US',1072,'Kronobergs län'),('en_US',1073,'Norrbottens län'),('en_US',1074,'Skåne län'),('en_US',1075,'Stockholms län'),('en_US',1076,'Södermanlands län'),('en_US',1077,'Uppsala län'),('en_US',1078,'Värmlands län'),('en_US',1079,'Västerbottens län'),('en_US',1080,'Västernorrlands län'),('en_US',1081,'Västmanlands län'),('en_US',1082,'Västra Götalands län'),('en_US',1083,'Örebro län'),('en_US',1084,'Östergötlands län'),('en_US',1085,'Cherkaska oblast'),('en_US',1086,'Chernihivska oblast'),('en_US',1087,'Chernivetska oblast'),('en_US',1088,'Dnipropetrovska oblast'),('en_US',1089,'Donetska oblast'),('en_US',1090,'Ivano-Frankivska oblast'),('en_US',1091,'Kharkivska oblast'),('en_US',1092,'Khersonska oblast'),('en_US',1093,'Khmelnytska oblast'),('en_US',1094,'Kirovohradska oblast'),('en_US',1095,'Kyivska oblast'),('en_US',1096,'Luhanska oblast'),('en_US',1097,'Lvivska oblast'),('en_US',1098,'Mykolaivska oblast'),('en_US',1099,'Odeska oblast'),('en_US',1100,'Poltavska oblast'),('en_US',1101,'Rivnenska oblast'),('en_US',1102,'Sumska oblast'),('en_US',1103,'Ternopilska oblast'),('en_US',1104,'Vinnytska oblast'),('en_US',1105,'Volynska oblast'),('en_US',1106,'Zakarpatska oblast'),('en_US',1107,'Zaporizka oblast'),('en_US',1108,'Zhytomyrska oblast'),('en_US',1109,'Avtonomna Respublika Krym'),('en_US',1110,'Kyiv'),('en_US',1111,'Sevastopol'),('en_US',1112,'Artigas'),('en_US',1113,'Canelones'),('en_US',1114,'Cerro Largo'),('en_US',1115,'Colonia'),('en_US',1116,'Durazno'),('en_US',1117,'Flores'),('en_US',1118,'Florida'),('en_US',1119,'Lavalleja'),('en_US',1120,'Maldonado'),('en_US',1121,'Montevideo'),('en_US',1122,'Paysandu'),('en_US',1123,'Río Negro'),('en_US',1124,'Rivera'),('en_US',1125,'Rocha'),('en_US',1126,'Salto'),('en_US',1127,'San José'),('en_US',1128,'Soriano'),('en_US',1129,'Tacuarembó'),('en_US',1130,'Treinta y Tres'),('en_US',1131,'Dependencias Federales'),('en_US',1132,'Distrito Capital'),('en_US',1133,'Amazonas'),('en_US',1134,'Anzoátegui'),('en_US',1135,'Apure'),('en_US',1136,'Aragua'),('en_US',1137,'Barinas'),('en_US',1138,'Bolívar'),('en_US',1139,'Carabobo'),('en_US',1140,'Cojedes'),('en_US',1141,'Delta Amacuro'),('en_US',1142,'Falcón'),('en_US',1143,'Guárico'),('en_US',1144,'Lara'),('en_US',1145,'Mérida'),('en_US',1146,'Miranda'),('en_US',1147,'Monagas'),('en_US',1148,'Nueva Esparta'),('en_US',1149,'Portuguesa'),('en_US',1150,'Sucre'),('en_US',1151,'Táchira'),('en_US',1152,'Trujillo'),('en_US',1153,'Vargas'),('en_US',1154,'Yaracuy'),('en_US',1155,'Zulia'),('en_US',1156,'Ladakh'); /*!40000 ALTER TABLE `directory_country_region_name` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_currency_rate` -- DROP TABLE IF EXISTS `directory_currency_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `directory_currency_rate` ( `currency_from` varchar(3) NOT NULL COMMENT 'Currency Code Convert From', `currency_to` varchar(3) NOT NULL COMMENT 'Currency Code Convert To', `rate` decimal(24,12) NOT NULL DEFAULT '0.000000000000' COMMENT 'Currency Conversion Rate', PRIMARY KEY (`currency_from`,`currency_to`), KEY `DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Directory Currency Rate'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `directory_currency_rate` -- LOCK TABLES `directory_currency_rate` WRITE; /*!40000 ALTER TABLE `directory_currency_rate` DISABLE KEYS */; INSERT INTO `directory_currency_rate` VALUES ('EUR','EUR',1.000000000000),('EUR','USD',1.415000000000),('USD','EUR',0.706700000000),('USD','USD',1.000000000000); /*!40000 ALTER TABLE `directory_currency_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link` -- DROP TABLE IF EXISTS `downloadable_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_link` ( `link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order', `number_of_downloads` int DEFAULT NULL COMMENT 'Number of downloads', `is_shareable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable flag', `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url', `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File', `link_type` varchar(20) DEFAULT NULL COMMENT 'Link Type', `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample Url', `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample File', `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type', PRIMARY KEY (`link_id`), KEY `DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`), CONSTRAINT `DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_link` -- LOCK TABLES `downloadable_link` WRITE; /*!40000 ALTER TABLE `downloadable_link` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_price` -- DROP TABLE IF EXISTS `downloadable_link_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_link_price` ( `price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Price ID', `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price', PRIMARY KEY (`price_id`), KEY `DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`), KEY `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`), CONSTRAINT `DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE, CONSTRAINT `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Price Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_link_price` -- LOCK TABLES `downloadable_link_price` WRITE; /*!40000 ALTER TABLE `downloadable_link_price` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_purchased` -- DROP TABLE IF EXISTS `downloadable_link_purchased`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_link_purchased` ( `purchased_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID', `order_id` int unsigned DEFAULT '0' COMMENT 'Order ID', `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID', `order_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order Item ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of creation', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of modification', `customer_id` int unsigned DEFAULT '0' COMMENT 'Customer ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product name', `product_sku` varchar(255) DEFAULT NULL COMMENT 'Product sku', `link_section_title` varchar(255) DEFAULT NULL COMMENT 'Link_section_title', PRIMARY KEY (`purchased_id`), KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`), KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`), KEY `DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`), CONSTRAINT `DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL, CONSTRAINT `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Purchased Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_link_purchased` -- LOCK TABLES `downloadable_link_purchased` WRITE; /*!40000 ALTER TABLE `downloadable_link_purchased` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_purchased` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_purchased_item` -- DROP TABLE IF EXISTS `downloadable_link_purchased_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_link_purchased_item` ( `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID', `purchased_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Purchased ID', `order_item_id` int unsigned DEFAULT '0' COMMENT 'Order Item ID', `product_id` int unsigned DEFAULT '0' COMMENT 'Product ID', `link_hash` varchar(255) DEFAULT NULL COMMENT 'Link hash', `number_of_downloads_bought` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads bought', `number_of_downloads_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of downloads used', `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID', `link_title` varchar(255) DEFAULT NULL COMMENT 'Link Title', `is_shareable` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Shareable Flag', `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url', `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File', `link_type` varchar(255) DEFAULT NULL COMMENT 'Link Type', `status` varchar(50) DEFAULT NULL COMMENT 'Status', `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', PRIMARY KEY (`item_id`), KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`), KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`), KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`), CONSTRAINT `DL_LNK_PURCHASED_ITEM_ORDER_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`order_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE SET NULL, CONSTRAINT `DL_LNK_PURCHASED_ITEM_PURCHASED_ID_DL_LNK_PURCHASED_PURCHASED_ID` FOREIGN KEY (`purchased_id`) REFERENCES `downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Link Purchased Item Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_link_purchased_item` -- LOCK TABLES `downloadable_link_purchased_item` WRITE; /*!40000 ALTER TABLE `downloadable_link_purchased_item` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_purchased_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_title` -- DROP TABLE IF EXISTS `downloadable_link_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_link_title` ( `title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID', `link_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Link ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `title` varchar(255) DEFAULT NULL COMMENT 'Title', PRIMARY KEY (`title_id`), UNIQUE KEY `DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`), KEY `DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`), CONSTRAINT `DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE, CONSTRAINT `DOWNLOADABLE_LINK_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Link Title Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_link_title` -- LOCK TABLES `downloadable_link_title` WRITE; /*!40000 ALTER TABLE `downloadable_link_title` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_sample` -- DROP TABLE IF EXISTS `downloadable_sample`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_sample` ( `sample_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sample ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample URL', `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample file', `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`sample_id`), KEY `DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`), CONSTRAINT `DOWNLOADABLE_SAMPLE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Sample Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_sample` -- LOCK TABLES `downloadable_sample` WRITE; /*!40000 ALTER TABLE `downloadable_sample` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_sample` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_sample_title` -- DROP TABLE IF EXISTS `downloadable_sample_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `downloadable_sample_title` ( `title_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID', `sample_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sample ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `title` varchar(255) DEFAULT NULL COMMENT 'Title', PRIMARY KEY (`title_id`), UNIQUE KEY `DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`), KEY `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`), CONSTRAINT `DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE, CONSTRAINT `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Downloadable Sample Title Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `downloadable_sample_title` -- LOCK TABLES `downloadable_sample_title` WRITE; /*!40000 ALTER TABLE `downloadable_sample_title` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_sample_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute` -- DROP TABLE IF EXISTS `eav_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute` ( `attribute_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code', `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model', `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model', `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type', `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table', `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model', `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input', `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label', `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class', `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model', `is_required` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Required', `is_user_defined` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is User Defined', `default_value` text COMMENT 'Default Value', `is_unique` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Defines Is Unique', `note` varchar(255) DEFAULT NULL COMMENT 'Note', PRIMARY KEY (`attribute_id`), UNIQUE KEY `EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`), KEY `EAV_ATTRIBUTE_FRONTEND_INPUT_ENTITY_TYPE_ID_IS_USER_DEFINED` (`frontend_input`,`entity_type_id`,`is_user_defined`), CONSTRAINT `EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute` -- LOCK TABLES `eav_attribute` WRITE; /*!40000 ALTER TABLE `eav_attribute` DISABLE KEYS */; INSERT INTO `eav_attribute` VALUES (1,1,'website_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website','static',NULL,NULL,'select','Associate to Website',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Store','static',NULL,NULL,'select','Create In',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'static',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','static',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Date of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password','static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'rp_token',NULL,NULL,'static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(14,1,'rp_token_created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(15,1,'default_billing',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Billing','static',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(16,1,'default_shipping',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Shipping','static',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(17,1,'taxvat',NULL,NULL,'static',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(18,1,'confirmation',NULL,NULL,'static',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(19,1,'created_at',NULL,NULL,'static',NULL,NULL,'date','Created At',NULL,NULL,0,0,NULL,0,NULL),(20,1,'gender',NULL,NULL,'static',NULL,NULL,'select','Gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,0,NULL,0,NULL),(21,1,'disable_auto_group_change','Magento\\Customer\\Model\\Attribute','Magento\\Customer\\Model\\Attribute\\Backend\\Data\\Boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(22,2,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(23,2,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(24,2,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(25,2,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(26,2,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(27,2,'company',NULL,NULL,'static',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(28,2,'street','Magento\\Customer\\Model\\Attribute','Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\DefaultBackend','static',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(29,2,'city',NULL,NULL,'static',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(30,2,'country_id',NULL,NULL,'static',NULL,NULL,'select','Country',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Country',1,0,NULL,0,NULL),(31,2,'region',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Backend\\Region','static',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(32,2,'region_id',NULL,NULL,'static',NULL,NULL,'hidden','State/Province',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Region',0,0,NULL,0,NULL),(33,2,'postcode',NULL,NULL,'static',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,0,0,NULL,0,NULL),(34,2,'telephone',NULL,NULL,'static',NULL,NULL,'text','Phone Number',NULL,NULL,0,0,NULL,0,NULL),(35,2,'fax',NULL,NULL,'static',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id','Magento\\Customer\\Model\\Attribute',NULL,'static',NULL,NULL,'text','VAT Number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'static',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,1,'updated_at',NULL,NULL,'static',NULL,NULL,'date','Updated At',NULL,NULL,0,0,NULL,0,NULL),(42,1,'failures_num',NULL,NULL,'static',NULL,NULL,'hidden','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(43,1,'first_failure',NULL,NULL,'static',NULL,NULL,'date','First Failure Date',NULL,NULL,0,0,NULL,0,NULL),(44,1,'lock_expires',NULL,NULL,'static',NULL,NULL,'date','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(45,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(46,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,NULL,0,NULL),(47,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(48,3,'image',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(49,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(50,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(51,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(52,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Mode',0,0,NULL,0,NULL),(53,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Page',0,0,NULL,0,NULL),(54,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(55,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(56,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(57,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(59,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(61,3,'custom_design_from','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Active From',NULL,NULL,0,0,NULL,0,NULL),(62,3,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(63,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(64,3,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(65,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(66,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(67,3,'available_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(68,3,'default_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(69,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,'1',0,NULL),(70,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(71,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(72,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(73,4,'name',NULL,NULL,'varchar',NULL,NULL,'text','Product Name','validate-length maximum-length-255',NULL,1,0,NULL,0,NULL),(74,4,'sku','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku','static',NULL,NULL,'text','SKU','validate-length maximum-length-64',NULL,1,0,NULL,1,NULL),(75,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(76,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,0,0,NULL,0,NULL),(77,4,'price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(78,4,'special_price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(79,4,'special_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(80,4,'special_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(81,4,'cost',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(82,4,'weight',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight','decimal',NULL,NULL,'weight','Weight',NULL,NULL,0,0,NULL,0,NULL),(83,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,NULL,0,NULL),(84,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(85,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(86,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars. Meta Description should optimally be between 150-160 characters'),(87,4,'image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Base',NULL,NULL,0,0,NULL,0,NULL),(88,4,'small_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Small',NULL,NULL,0,0,NULL,0,NULL),(89,4,'thumbnail',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(90,4,'media_gallery',NULL,NULL,'static',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(91,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'tier_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(93,4,'color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,NULL,0,NULL),(94,4,'news_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'news_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(96,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(97,4,'status',NULL,NULL,'int',NULL,NULL,'select','Enable Product',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status',0,0,'1',0,NULL),(98,4,'minimal_price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(99,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'Magento\\Catalog\\Model\\Product\\Visibility',0,0,'4',0,NULL),(100,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','New Theme',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(101,4,'custom_design_from',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(102,4,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(103,4,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Layout Update XML',NULL,NULL,0,0,NULL,0,NULL),(104,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(105,4,'category_ids',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category','static',NULL,NULL,'text','Categories',NULL,NULL,0,0,NULL,0,NULL),(106,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container',0,0,'container2',0,NULL),(107,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(108,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(110,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(111,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(112,4,'created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(113,4,'updated_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(114,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture',0,0,NULL,0,NULL),(115,4,'quantity_and_stock_status',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock','int',NULL,NULL,'select','Quantity',NULL,'Magento\\CatalogInventory\\Model\\Source\\Stock',0,0,'1',0,NULL),(116,4,'custom_layout',NULL,NULL,'varchar',NULL,NULL,'select','New Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(117,4,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(118,3,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(119,3,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(120,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(121,4,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key','validate-trailing-hyphen',NULL,0,0,NULL,0,NULL),(122,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(123,4,'price_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Price',NULL,NULL,1,0,'0',0,NULL),(124,4,'sku_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic SKU',NULL,NULL,1,0,'0',0,NULL),(125,4,'weight_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Weight',NULL,NULL,1,0,'0',0,NULL),(126,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View',1,0,NULL,0,NULL),(127,4,'shipment_type',NULL,NULL,'int',NULL,NULL,'select','Ship Bundle Items',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type',1,0,'0',0,NULL),(128,4,'msrp','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimum Advertised Price',NULL,NULL,0,0,NULL,0,NULL),(129,4,'msrp_display_actual_price_type',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price',0,0,'0',0,NULL),(130,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(131,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(132,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(133,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL),(134,4,'gift_message_available',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(135,4,'swatch_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Swatch',NULL,NULL,0,0,NULL,0,NULL),(136,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'Magento\\Tax\\Model\\TaxClass\\Source\\Product',0,0,'2',0,NULL); /*!40000 ALTER TABLE `eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_group` -- DROP TABLE IF EXISTS `eav_attribute_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_group` ( `attribute_group_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group ID', `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID', `attribute_group_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Group Name', `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order', `default_id` smallint unsigned DEFAULT '0' COMMENT 'Default ID', `attribute_group_code` varchar(255) NOT NULL COMMENT 'Attribute Group Code', `tab_group_code` varchar(255) DEFAULT NULL COMMENT 'Tab Group Code', PRIMARY KEY (`attribute_group_id`), UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`), UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`), KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`), CONSTRAINT `EAV_ATTR_GROUP_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Group'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_group` -- LOCK TABLES `eav_attribute_group` WRITE; /*!40000 ALTER TABLE `eav_attribute_group` DISABLE KEYS */; INSERT INTO `eav_attribute_group` VALUES (1,1,'General',1,1,'general',NULL),(2,2,'General',1,1,'general',NULL),(3,3,'General',10,1,'general',NULL),(4,3,'General Information',2,0,'general-information',NULL),(5,3,'Display Settings',20,0,'display-settings',NULL),(6,3,'Custom Design',30,0,'custom-design',NULL),(7,4,'Product Details',10,1,'product-details','basic'),(8,4,'Advanced Pricing',40,0,'advanced-pricing','advanced'),(9,4,'Search Engine Optimization',30,0,'search-engine-optimization','basic'),(10,4,'Images',20,0,'image-management','basic'),(11,4,'Design',50,0,'design','advanced'),(12,4,'Autosettings',60,0,'autosettings','advanced'),(13,4,'Content',15,0,'content','basic'),(14,4,'Schedule Design Update',55,0,'schedule-design-update','advanced'),(15,4,'Bundle Items',16,0,'bundle-items',NULL),(16,5,'General',1,1,'general',NULL),(17,6,'General',1,1,'general',NULL),(18,7,'General',1,1,'general',NULL),(19,8,'General',1,1,'general',NULL),(20,4,'Gift Options',61,0,'gift-options',NULL); /*!40000 ALTER TABLE `eav_attribute_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_label` -- DROP TABLE IF EXISTS `eav_attribute_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_label` ( `attribute_label_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`attribute_label_id`), KEY `EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`), KEY `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`), CONSTRAINT `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Label'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_label` -- LOCK TABLES `eav_attribute_label` WRITE; /*!40000 ALTER TABLE `eav_attribute_label` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_attribute_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option` -- DROP TABLE IF EXISTS `eav_attribute_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`option_id`), KEY `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Option'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_option` -- LOCK TABLES `eav_attribute_option` WRITE; /*!40000 ALTER TABLE `eav_attribute_option` DISABLE KEYS */; INSERT INTO `eav_attribute_option` VALUES (1,20,0),(2,20,1),(3,20,3); /*!40000 ALTER TABLE `eav_attribute_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option_swatch` -- DROP TABLE IF EXISTS `eav_attribute_option_swatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_option_swatch` ( `swatch_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID', `option_id` int unsigned NOT NULL COMMENT 'Option ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `type` smallint unsigned NOT NULL COMMENT 'Swatch type: 0 - text, 1 - visual color, 2 - visual image', `value` varchar(255) DEFAULT NULL COMMENT 'Swatch Value', PRIMARY KEY (`swatch_id`), UNIQUE KEY `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`), KEY `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` (`option_id`), KEY `EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`), CONSTRAINT `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Magento Swatches table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_option_swatch` -- LOCK TABLES `eav_attribute_option_swatch` WRITE; /*!40000 ALTER TABLE `eav_attribute_option_swatch` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_attribute_option_swatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option_value` -- DROP TABLE IF EXISTS `eav_attribute_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_option_value` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Option ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `value` varchar(255) DEFAULT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), KEY `EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`), KEY `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`), CONSTRAINT `EAV_ATTR_OPT_VAL_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Option Value'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_option_value` -- LOCK TABLES `eav_attribute_option_value` WRITE; /*!40000 ALTER TABLE `eav_attribute_option_value` DISABLE KEYS */; INSERT INTO `eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(3,3,0,'Not Specified'); /*!40000 ALTER TABLE `eav_attribute_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_set` -- DROP TABLE IF EXISTS `eav_attribute_set`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_attribute_set` ( `attribute_set_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_set_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Set Name', `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`attribute_set_id`), UNIQUE KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`), KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`), CONSTRAINT `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Attribute Set'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_attribute_set` -- LOCK TABLES `eav_attribute_set` WRITE; /*!40000 ALTER TABLE `eav_attribute_set` DISABLE KEYS */; INSERT INTO `eav_attribute_set` VALUES (1,1,'Default',2),(2,2,'Default',2),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1); /*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity` -- DROP TABLE IF EXISTS `eav_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Parent ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `is_active` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Entity Active', PRIMARY KEY (`entity_id`), KEY `EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), KEY `EAV_ENTITY_STORE_ID` (`store_id`), CONSTRAINT `EAV_ENTITY_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity` -- LOCK TABLES `eav_entity` WRITE; /*!40000 ALTER TABLE `eav_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_attribute` -- DROP TABLE IF EXISTS `eav_entity_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_attribute` ( `entity_attribute_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Set ID', `attribute_group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute Group ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `sort_order` smallint NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`entity_attribute_id`), UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`), UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`), KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`), KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTT_ATTR_ATTR_GROUP_ID_EAV_ATTR_GROUP_ATTR_GROUP_ID` FOREIGN KEY (`attribute_group_id`) REFERENCES `eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Attributes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_attribute` -- LOCK TABLES `eav_entity_attribute` WRITE; /*!40000 ALTER TABLE `eav_entity_attribute` DISABLE KEYS */; INSERT INTO `eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,20),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,81),(13,1,1,1,13,115),(14,1,1,1,14,120),(15,1,1,1,15,82),(16,1,1,1,16,83),(17,1,1,1,17,100),(18,1,1,1,18,0),(19,1,1,1,19,0),(20,1,1,1,20,110),(21,1,1,1,21,28),(22,2,2,2,22,10),(23,2,2,2,23,20),(24,2,2,2,24,30),(25,2,2,2,25,40),(26,2,2,2,26,50),(27,2,2,2,27,60),(28,2,2,2,28,70),(29,2,2,2,29,100),(30,2,2,2,30,80),(31,2,2,2,31,90),(32,2,2,2,32,90),(33,2,2,2,33,110),(34,2,2,2,34,120),(35,2,2,2,35,130),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,1,1,1,41,87),(42,1,1,1,42,100),(43,1,1,1,43,110),(44,1,1,1,44,120),(45,3,3,4,45,1),(46,3,3,4,46,2),(47,3,3,4,47,4),(48,3,3,4,48,5),(49,3,3,4,49,6),(50,3,3,4,50,7),(51,3,3,4,51,8),(52,3,3,5,52,10),(53,3,3,5,53,20),(54,3,3,5,54,30),(55,3,3,4,55,12),(56,3,3,4,56,13),(57,3,3,4,57,14),(58,3,3,4,58,15),(59,3,3,4,59,16),(60,3,3,6,60,10),(61,3,3,6,61,30),(62,3,3,6,62,40),(63,3,3,6,63,50),(64,3,3,6,64,60),(65,3,3,4,65,24),(66,3,3,4,66,25),(67,3,3,5,67,40),(68,3,3,5,68,50),(69,3,3,4,69,10),(70,3,3,6,70,5),(71,3,3,6,71,6),(72,3,3,5,72,51),(73,4,4,7,73,10),(74,4,4,7,74,20),(75,4,4,13,75,110),(76,4,4,13,76,100),(77,4,4,7,77,30),(78,4,4,8,78,3),(79,4,4,8,79,4),(80,4,4,8,80,5),(81,4,4,8,81,6),(82,4,4,7,82,70),(83,4,4,9,84,20),(84,4,4,9,85,30),(85,4,4,9,86,40),(86,4,4,10,87,1),(87,4,4,10,88,2),(88,4,4,10,89,3),(89,4,4,10,90,4),(90,4,4,7,91,6),(91,4,4,8,92,7),(92,4,4,7,94,90),(93,4,4,7,95,100),(94,4,4,10,96,5),(95,4,4,7,97,5),(96,4,4,8,98,8),(97,4,4,7,99,80),(98,4,4,14,100,40),(99,4,4,14,101,20),(100,4,4,14,102,30),(101,4,4,11,103,10),(102,4,4,11,104,5),(103,4,4,7,105,80),(104,4,4,11,106,6),(105,4,4,7,107,14),(106,4,4,7,108,15),(107,4,4,7,109,16),(108,4,4,7,110,17),(109,4,4,7,111,18),(110,4,4,7,112,19),(111,4,4,7,113,20),(112,4,4,7,114,110),(113,4,4,7,115,60),(114,4,4,14,116,50),(115,4,4,11,117,51),(116,3,3,6,118,51),(117,3,3,4,119,3),(118,3,3,4,120,17),(119,4,4,9,121,10),(120,4,4,7,122,11),(121,4,4,7,123,31),(122,4,4,7,124,21),(123,4,4,7,125,71),(124,4,4,8,126,9),(125,4,4,15,127,1),(126,4,4,8,128,10),(127,4,4,8,129,11),(128,4,4,7,130,111),(129,4,4,7,131,112),(130,4,4,7,132,113),(131,4,4,7,133,114),(132,4,4,20,134,10),(133,4,4,10,135,3),(134,4,4,7,136,40); /*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_datetime` -- DROP TABLE IF EXISTS `eav_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_datetime` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` datetime DEFAULT NULL COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `EAV_ENTITY_DATETIME_STORE_ID` (`store_id`), KEY `EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`), CONSTRAINT `EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_datetime` -- LOCK TABLES `eav_entity_datetime` WRITE; /*!40000 ALTER TABLE `eav_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_decimal` -- DROP TABLE IF EXISTS `eav_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_decimal` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`), KEY `EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`), CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_decimal` -- LOCK TABLES `eav_entity_decimal` WRITE; /*!40000 ALTER TABLE `eav_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_int` -- DROP TABLE IF EXISTS `eav_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_int` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` int NOT NULL DEFAULT '0' COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `EAV_ENTITY_INT_STORE_ID` (`store_id`), KEY `EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`), CONSTRAINT `EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_INT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_int` -- LOCK TABLES `eav_entity_int` WRITE; /*!40000 ALTER TABLE `eav_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_store` -- DROP TABLE IF EXISTS `eav_entity_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_store` ( `entity_store_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Store ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `increment_prefix` varchar(20) DEFAULT NULL COMMENT 'Increment Prefix', `increment_last_id` varchar(50) DEFAULT NULL COMMENT 'Last Incremented ID', PRIMARY KEY (`entity_store_id`), KEY `EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`), KEY `EAV_ENTITY_STORE_STORE_ID` (`store_id`), CONSTRAINT `EAV_ENTITY_STORE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Store'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_store` -- LOCK TABLES `eav_entity_store` WRITE; /*!40000 ALTER TABLE `eav_entity_store` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_text` -- DROP TABLE IF EXISTS `eav_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_text` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` text NOT NULL COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `EAV_ENTITY_TEXT_STORE_ID` (`store_id`), CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_text` -- LOCK TABLES `eav_entity_text` WRITE; /*!40000 ALTER TABLE `eav_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_type` -- DROP TABLE IF EXISTS `eav_entity_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_type` ( `entity_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Type ID', `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code', `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model', `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model', `entity_table` varchar(255) DEFAULT NULL COMMENT 'Entity Table', `value_table_prefix` varchar(255) DEFAULT NULL COMMENT 'Value Table Prefix', `entity_id_field` varchar(255) DEFAULT NULL COMMENT 'Entity ID Field', `is_data_sharing` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Defines Is Data Sharing', `data_sharing_key` varchar(100) DEFAULT 'default' COMMENT 'Data Sharing Key', `default_attribute_set_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Default Attribute Set ID', `increment_model` varchar(255) DEFAULT NULL COMMENT 'Increment Model', `increment_per_store` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Increment Per Store', `increment_pad_length` smallint unsigned NOT NULL DEFAULT '8' COMMENT 'Increment Pad Length', `increment_pad_char` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Increment Pad Char', `additional_attribute_table` varchar(255) DEFAULT NULL COMMENT 'Additional Attribute Table', `entity_attribute_collection` varchar(255) DEFAULT NULL COMMENT 'Entity Attribute Collection', PRIMARY KEY (`entity_type_id`), KEY `EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Type'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_type` -- LOCK TABLES `eav_entity_type` WRITE; /*!40000 ALTER TABLE `eav_entity_type` DISABLE KEYS */; INSERT INTO `eav_entity_type` VALUES (1,'customer','Magento\\Customer\\Model\\ResourceModel\\Customer','Magento\\Customer\\Model\\Attribute','customer_entity',NULL,NULL,1,'default',1,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Attribute\\Collection'),(2,'customer_address','Magento\\Customer\\Model\\ResourceModel\\Address','Magento\\Customer\\Model\\Attribute','customer_address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Collection'),(3,'catalog_category','Magento\\Catalog\\Model\\ResourceModel\\Category','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_category_entity',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(4,'catalog_product','Magento\\Catalog\\Model\\ResourceModel\\Product','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_product_entity',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Product\\Attribute\\Collection'),(5,'order','Magento\\Sales\\Model\\ResourceModel\\Order',NULL,'sales_order',NULL,NULL,1,'default',5,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(6,'invoice','Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice',NULL,'sales_invoice',NULL,NULL,1,'default',6,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(7,'creditmemo','Magento\\Sales\\Model\\ResourceModel\\Order\\Creditmemo',NULL,'sales_creditmemo',NULL,NULL,1,'default',7,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(8,'shipment','Magento\\Sales\\Model\\ResourceModel\\Order\\Shipment',NULL,'sales_shipment',NULL,NULL,1,'default',8,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL); /*!40000 ALTER TABLE `eav_entity_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_varchar` -- DROP TABLE IF EXISTS `eav_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_entity_varchar` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `entity_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Type ID', `attribute_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Attribute ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `entity_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `value` varchar(255) DEFAULT NULL COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`), KEY `EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`), CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Entity Value Prefix'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_entity_varchar` -- LOCK TABLES `eav_entity_varchar` WRITE; /*!40000 ALTER TABLE `eav_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_element` -- DROP TABLE IF EXISTS `eav_form_element`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_form_element` ( `element_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Element ID', `type_id` smallint unsigned NOT NULL COMMENT 'Type ID', `fieldset_id` smallint unsigned DEFAULT NULL COMMENT 'Fieldset ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', `sort_order` int NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`element_id`), UNIQUE KEY `EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`), KEY `EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`), KEY `EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `EAV_FORM_ELEMENT_FIELDSET_ID_EAV_FORM_FIELDSET_FIELDSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL, CONSTRAINT `EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Element'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_form_element` -- LOCK TABLES `eav_form_element` WRITE; /*!40000 ALTER TABLE `eav_form_element` DISABLE KEYS */; INSERT INTO `eav_form_element` VALUES (1,1,NULL,23,0),(2,1,NULL,25,1),(3,1,NULL,27,2),(4,1,NULL,9,3),(5,1,NULL,28,4),(6,1,NULL,29,5),(7,1,NULL,31,6),(8,1,NULL,33,7),(9,1,NULL,30,8),(10,1,NULL,34,9),(11,1,NULL,35,10),(12,2,NULL,23,0),(13,2,NULL,25,1),(14,2,NULL,27,2),(15,2,NULL,9,3),(16,2,NULL,28,4),(17,2,NULL,29,5),(18,2,NULL,31,6),(19,2,NULL,33,7),(20,2,NULL,30,8),(21,2,NULL,34,9),(22,2,NULL,35,10),(23,3,NULL,23,0),(24,3,NULL,25,1),(25,3,NULL,27,2),(26,3,NULL,28,3),(27,3,NULL,29,4),(28,3,NULL,31,5),(29,3,NULL,33,6),(30,3,NULL,30,7),(31,3,NULL,34,8),(32,3,NULL,35,9),(33,4,NULL,23,0),(34,4,NULL,25,1),(35,4,NULL,27,2),(36,4,NULL,28,3),(37,4,NULL,29,4),(38,4,NULL,31,5),(39,4,NULL,33,6),(40,4,NULL,30,7),(41,4,NULL,34,8),(42,4,NULL,35,9); /*!40000 ALTER TABLE `eav_form_element` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_fieldset` -- DROP TABLE IF EXISTS `eav_form_fieldset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_form_fieldset` ( `fieldset_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Fieldset ID', `type_id` smallint unsigned NOT NULL COMMENT 'Type ID', `code` varchar(64) NOT NULL COMMENT 'Code', `sort_order` int NOT NULL DEFAULT '0' COMMENT 'Sort Order', PRIMARY KEY (`fieldset_id`), UNIQUE KEY `EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`), CONSTRAINT `EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Fieldset'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_form_fieldset` -- LOCK TABLES `eav_form_fieldset` WRITE; /*!40000 ALTER TABLE `eav_form_fieldset` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_form_fieldset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_fieldset_label` -- DROP TABLE IF EXISTS `eav_form_fieldset_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_form_fieldset_label` ( `fieldset_id` smallint unsigned NOT NULL COMMENT 'Fieldset ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `label` varchar(255) NOT NULL COMMENT 'Label', PRIMARY KEY (`fieldset_id`,`store_id`), KEY `EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`), CONSTRAINT `EAV_FORM_FIELDSET_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `EAV_FORM_FSET_LBL_FSET_ID_EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Fieldset Label'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_form_fieldset_label` -- LOCK TABLES `eav_form_fieldset_label` WRITE; /*!40000 ALTER TABLE `eav_form_fieldset_label` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_form_fieldset_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_type` -- DROP TABLE IF EXISTS `eav_form_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_form_type` ( `type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Type ID', `code` varchar(64) NOT NULL COMMENT 'Code', `label` varchar(255) NOT NULL COMMENT 'Label', `is_system` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is System', `theme` varchar(64) DEFAULT NULL COMMENT 'Theme', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`type_id`), UNIQUE KEY `EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`), KEY `EAV_FORM_TYPE_STORE_ID` (`store_id`), CONSTRAINT `EAV_FORM_TYPE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Type'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_form_type` -- LOCK TABLES `eav_form_type` WRITE; /*!40000 ALTER TABLE `eav_form_type` DISABLE KEYS */; INSERT INTO `eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0); /*!40000 ALTER TABLE `eav_form_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_type_entity` -- DROP TABLE IF EXISTS `eav_form_type_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `eav_form_type_entity` ( `type_id` smallint unsigned NOT NULL COMMENT 'Type ID', `entity_type_id` smallint unsigned NOT NULL COMMENT 'Entity Type ID', PRIMARY KEY (`type_id`,`entity_type_id`), KEY `EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), CONSTRAINT `EAV_FORM_TYPE_ENTITY_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE, CONSTRAINT `EAV_FORM_TYPE_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Eav Form Type Entity'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `eav_form_type_entity` -- LOCK TABLES `eav_form_type_entity` WRITE; /*!40000 ALTER TABLE `eav_form_type_entity` DISABLE KEYS */; INSERT INTO `eav_form_type_entity` VALUES (1,1),(2,1),(1,2),(2,2),(3,2),(4,2); /*!40000 ALTER TABLE `eav_form_type_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_template` -- DROP TABLE IF EXISTS `email_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `email_template` ( `template_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID', `template_code` varchar(150) NOT NULL COMMENT 'Template Name', `template_text` text NOT NULL COMMENT 'Template Content', `template_styles` text COMMENT 'Templste Styles', `template_type` int unsigned DEFAULT NULL COMMENT 'Template Type', `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject', `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name', `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email', `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Date of Template Creation', `modified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of Template Modification', `orig_template_code` varchar(200) DEFAULT NULL COMMENT 'Original Template Code', `orig_template_variables` text COMMENT 'Original Template Variables', `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Should the template render in legacy mode', PRIMARY KEY (`template_id`), UNIQUE KEY `EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`), KEY `EMAIL_TEMPLATE_ADDED_AT` (`added_at`), KEY `EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Email Templates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_template` -- LOCK TABLES `email_template` WRITE; /*!40000 ALTER TABLE `email_template` DISABLE KEYS */; /*!40000 ALTER TABLE `email_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `flag` -- DROP TABLE IF EXISTS `flag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `flag` ( `flag_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id', `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code', `state` smallint 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 `FLAG_LAST_UPDATE` (`last_update`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3 COMMENT='Flag'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `flag` -- LOCK TABLES `flag` WRITE; /*!40000 ALTER TABLE `flag` DISABLE KEYS */; INSERT INTO `flag` VALUES (2,'report_bestsellers_aggregated',0,NULL,'2024-03-14 23:00:02'),(3,'report_coupons_aggregated',0,NULL,'2024-03-14 23:00:02'),(4,'report_invoiced_aggregated',0,NULL,'2024-03-14 23:00:02'),(5,'report_order_aggregated',0,NULL,'2024-03-14 23:00:02'),(6,'report_refunded_aggregated',0,NULL,'2024-03-14 23:00:02'),(7,'report_shipping_aggregated',0,NULL,'2024-03-14 23:00:02'),(8,'report_tax_aggregated',0,NULL,'2024-03-14 23:00:02'),(9,'analytics_file_info',0,'{\"initializationVector\":\"5+ujIYDEbYynu0DdNTbZcg==\",\"path\":\"analytics\\/33a075c9b237bb92613b8430e51da7cd4b9794dfab0449f03ac400426852748c\\/data.tgz\"}','2024-03-15 01:00:02'); /*!40000 ALTER TABLE `flag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gift_message` -- DROP TABLE IF EXISTS `gift_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `gift_message` ( `gift_message_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID', `customer_id` int 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=utf8mb3 COMMENT='Gift Message'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gift_message` -- LOCK TABLES `gift_message` WRITE; /*!40000 ALTER TABLE `gift_message` DISABLE KEYS */; /*!40000 ALTER TABLE `gift_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `googleoptimizer_code` -- DROP TABLE IF EXISTS `googleoptimizer_code`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `googleoptimizer_code` ( `code_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID', `entity_id` int 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 unsigned NOT NULL COMMENT 'Store ID', `experiment_script` text COMMENT 'Google experiment script', PRIMARY KEY (`code_id`), UNIQUE KEY `GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`), CONSTRAINT `GOOGLEOPTIMIZER_CODE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Google Experiment code'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `googleoptimizer_code` -- LOCK TABLES `googleoptimizer_code` WRITE; /*!40000 ALTER TABLE `googleoptimizer_code` DISABLE KEYS */; /*!40000 ALTER TABLE `googleoptimizer_code` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `import_history` -- DROP TABLE IF EXISTS `import_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `import_history` ( `history_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record ID', `started_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Started at', `user_id` int 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=utf8mb3 COMMENT='Import history table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `import_history` -- LOCK TABLES `import_history` WRITE; /*!40000 ALTER TABLE `import_history` DISABLE KEYS */; /*!40000 ALTER TABLE `import_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `importexport_importdata` -- DROP TABLE IF EXISTS `importexport_importdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `importexport_importdata` ( `id` int 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', `is_processed` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Is Row Processed', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'timestamp of last update', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Import Data Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `importexport_importdata` -- LOCK TABLES `importexport_importdata` WRITE; /*!40000 ALTER TABLE `importexport_importdata` DISABLE KEYS */; /*!40000 ALTER TABLE `importexport_importdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `indexer_state` -- DROP TABLE IF EXISTS `indexer_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `indexer_state` ( `state_id` int 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 `INDEXER_STATE_INDEXER_ID` (`indexer_id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3 COMMENT='Indexer State'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `indexer_state` -- LOCK TABLES `indexer_state` WRITE; /*!40000 ALTER TABLE `indexer_state` DISABLE KEYS */; INSERT INTO `indexer_state` VALUES (1,'design_config_grid','valid','2024-03-11 12:30:09','792c9fef673960d6e4f7f2933fef906a'),(2,'customer_grid','valid','2024-03-14 08:31:04','d9552caa25692568c23adbc059bf7923'),(3,'catalog_category_product','valid','2024-03-14 08:25:05','3dc1f5e0fc3a70da0e7a5293162aa6e1'),(4,'catalog_product_category','valid','2024-03-14 08:25:05','fb8ac577642e4c08a8b5ebae5baf1b39'),(5,'catalogrule_rule','valid','2024-03-14 08:25:05','12f76f20df3a6a2b45e8d381b3334fa4'),(6,'catalog_product_attribute','valid','2024-03-14 08:25:05','d09e957027017db4f38b73de3bf2d0c9'),(7,'cataloginventory_stock','valid','2024-03-14 08:25:06','7d8ee1c54cf9c452eea99fdf17b71646'),(8,'catalog_product_price','valid','2024-03-14 08:25:06','fb99f471d516033cfb22d85f84fcae9f'),(9,'catalogrule_product','valid','2024-03-14 08:25:05','35150517ccc6e5d9562cd8961a707144'),(10,'catalogsearch_fulltext','valid','2024-03-14 08:25:06','b1402c9662c2518ba99ec9679dea6b50'); /*!40000 ALTER TABLE `indexer_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `integration` -- DROP TABLE IF EXISTS `integration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `integration` ( `integration_id` int 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 unsigned NOT NULL COMMENT 'Integration status', `consumer_id` int 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 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 `INTEGRATION_NAME` (`name`), UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`), CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='integration'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `integration` -- LOCK TABLES `integration` WRITE; /*!40000 ALTER TABLE `integration` DISABLE KEYS */; INSERT INTO `integration` VALUES (1,'Magento Analytics user','',NULL,1,1,'2023-12-19 07:00:02','2023-12-19 07:00:03',0,NULL); /*!40000 ALTER TABLE `integration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jwt_auth_revoked` -- DROP TABLE IF EXISTS `jwt_auth_revoked`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `jwt_auth_revoked` ( `user_type_id` int unsigned NOT NULL COMMENT 'User Type ID', `user_id` int unsigned NOT NULL COMMENT 'User ID', `revoke_before` bigint unsigned NOT NULL COMMENT 'Not accepting tokens issued before this timestamp', PRIMARY KEY (`user_type_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Holds revoked JWT authentication data'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jwt_auth_revoked` -- LOCK TABLES `jwt_auth_revoked` WRITE; /*!40000 ALTER TABLE `jwt_auth_revoked` DISABLE KEYS */; /*!40000 ALTER TABLE `jwt_auth_revoked` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `layout_link` -- DROP TABLE IF EXISTS `layout_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `layout_link` ( `layout_link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `theme_id` int unsigned NOT NULL COMMENT 'Theme ID', `layout_update_id` int 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 `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` (`theme_id`), KEY `LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`), KEY `LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`), CONSTRAINT `LAYOUT_LINK_LAYOUT_UPDATE_ID_LAYOUT_UPDATE_LAYOUT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE, CONSTRAINT `LAYOUT_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Layout Link'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `layout_link` -- LOCK TABLES `layout_link` WRITE; /*!40000 ALTER TABLE `layout_link` DISABLE KEYS */; /*!40000 ALTER TABLE `layout_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `layout_update` -- DROP TABLE IF EXISTS `layout_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `layout_update` ( `layout_update_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID', `handle` varchar(255) DEFAULT NULL COMMENT 'Handle', `xml` text COMMENT 'Xml', `sort_order` smallint 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 `LAYOUT_UPDATE_HANDLE` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Layout Updates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `layout_update` -- LOCK TABLES `layout_update` WRITE; /*!40000 ALTER TABLE `layout_update` DISABLE KEYS */; /*!40000 ALTER TABLE `layout_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `login_as_customer` -- DROP TABLE IF EXISTS `login_as_customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `login_as_customer` ( `secret` varchar(64) NOT NULL COMMENT 'Login Secret', `customer_id` int NOT NULL COMMENT 'Customer ID', `admin_id` int NOT NULL COMMENT 'Admin ID', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time', PRIMARY KEY (`secret`), KEY `LOGIN_AS_CUSTOMER_CREATED_AT` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Magento Login as Customer Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `login_as_customer` -- LOCK TABLES `login_as_customer` WRITE; /*!40000 ALTER TABLE `login_as_customer` DISABLE KEYS */; /*!40000 ALTER TABLE `login_as_customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `login_as_customer_assistance_allowed` -- DROP TABLE IF EXISTS `login_as_customer_assistance_allowed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `login_as_customer_assistance_allowed` ( `customer_id` int unsigned NOT NULL COMMENT 'Customer ID', PRIMARY KEY (`customer_id`), CONSTRAINT `LOGIN_AS_CSTR_ASSISTANCE_ALLOWED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Magento Login as Customer Assistance Allowed Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `login_as_customer_assistance_allowed` -- LOCK TABLES `login_as_customer_assistance_allowed` WRITE; /*!40000 ALTER TABLE `login_as_customer_assistance_allowed` DISABLE KEYS */; /*!40000 ALTER TABLE `login_as_customer_assistance_allowed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `magento_acknowledged_bulk` -- DROP TABLE IF EXISTS `magento_acknowledged_bulk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `magento_acknowledged_bulk` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID', `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID', PRIMARY KEY (`id`), UNIQUE KEY `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`), CONSTRAINT `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Bulk that was viewed by user from notification area'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `magento_acknowledged_bulk` -- LOCK TABLES `magento_acknowledged_bulk` WRITE; /*!40000 ALTER TABLE `magento_acknowledged_bulk` DISABLE KEYS */; /*!40000 ALTER TABLE `magento_acknowledged_bulk` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `magento_bulk` -- DROP TABLE IF EXISTS `magento_bulk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `magento_bulk` ( `id` int 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 unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action', `user_type` int DEFAULT NULL COMMENT 'Which type of user', `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description', `operation_count` int 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 `MAGENTO_BULK_UUID` (`uuid`), KEY `MAGENTO_BULK_USER_ID` (`user_id`), KEY `MAGENTO_BULK_START_TIME` (`start_time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Bulk entity that represents set of related asynchronous operations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `magento_bulk` -- LOCK TABLES `magento_bulk` WRITE; /*!40000 ALTER TABLE `magento_bulk` DISABLE KEYS */; /*!40000 ALTER TABLE `magento_bulk` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `magento_login_as_customer_log` -- DROP TABLE IF EXISTS `magento_login_as_customer_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `magento_login_as_customer_log` ( `log_id` int NOT NULL AUTO_INCREMENT COMMENT 'Log Id', `time` timestamp NULL DEFAULT NULL COMMENT 'Event Date', `user_id` int unsigned DEFAULT NULL COMMENT 'User Id', `user_name` varchar(40) DEFAULT NULL COMMENT 'User Name', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer Id', `customer_email` varchar(40) DEFAULT NULL COMMENT 'Customer email', PRIMARY KEY (`log_id`), KEY `MAGENTO_LOGIN_AS_CUSTOMER_LOG_USER_ID` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Login as Customer Logging'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `magento_login_as_customer_log` -- LOCK TABLES `magento_login_as_customer_log` WRITE; /*!40000 ALTER TABLE `magento_login_as_customer_log` DISABLE KEYS */; /*!40000 ALTER TABLE `magento_login_as_customer_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `magento_operation` -- DROP TABLE IF EXISTS `magento_operation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `magento_operation` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Operation ID', `operation_key` int unsigned DEFAULT NULL COMMENT 'Operation Key', `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID', `topic_name` varchar(255) DEFAULT NULL COMMENT 'Name of the related message queue topic', `serialized_data` blob COMMENT 'Data (serialized) required to perform an operation', `result_serialized_data` blob COMMENT 'Result data (serialized) after perform an operation', `status` smallint DEFAULT '0' COMMENT 'Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)', `error_code` smallint DEFAULT NULL COMMENT 'Code of the error that appeared during operation execution (used to aggregate related failed operations)', `result_message` varchar(255) DEFAULT NULL COMMENT 'Operation result message', `started_at` timestamp NULL DEFAULT NULL COMMENT 'Datetime the operation started processing', PRIMARY KEY (`id`), KEY `MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`), KEY `MAGENTO_OPERATION_STATUS_STARTED_AT` (`status`,`started_at`), CONSTRAINT `MAGENTO_OPERATION_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Operation entity'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `magento_operation` -- LOCK TABLES `magento_operation` WRITE; /*!40000 ALTER TABLE `magento_operation` DISABLE KEYS */; /*!40000 ALTER TABLE `magento_operation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_content_asset` -- DROP TABLE IF EXISTS `media_content_asset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_content_asset` ( `asset_id` int unsigned NOT NULL COMMENT 'Entity ID', `entity_type` varchar(255) NOT NULL COMMENT 'Content type', `entity_id` varchar(255) NOT NULL COMMENT 'Content entity id', `field` varchar(255) NOT NULL COMMENT 'Content field', PRIMARY KEY (`entity_type`,`entity_id`,`field`,`asset_id`), KEY `MEDIA_CONTENT_ASSET_ASSET_ID` (`asset_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Relation between media content and media asset'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_content_asset` -- LOCK TABLES `media_content_asset` WRITE; /*!40000 ALTER TABLE `media_content_asset` DISABLE KEYS */; INSERT INTO `media_content_asset` VALUES (2,'cms_block','1','content'),(2,'cms_page','7','content'),(3,'cms_block','1','content'),(4,'cms_block','1','content'),(5,'cms_block','1','content'),(5,'cms_block','2','content'),(7,'cms_block','1','content'),(7,'cms_block','4','content'),(8,'cms_page','7','content'),(14,'cms_page','2','content'),(16,'cms_page','2','content'),(19,'cms_page','2','content'),(20,'cms_page','2','content'),(21,'cms_page','2','content'),(24,'cms_page','2','content'),(25,'cms_page','2','content'),(26,'cms_page','2','content'),(27,'cms_block','7','content'),(27,'cms_page','2','content'),(29,'cms_block','3','content'),(36,'cms_block','3','content'),(36,'cms_block','7','content'),(37,'cms_block','3','content'),(37,'cms_block','7','content'),(38,'cms_block','3','content'),(38,'cms_block','7','content'),(43,'cms_block','4','content'),(44,'cms_block','4','content'),(45,'cms_block','4','content'),(46,'cms_block','4','content'),(49,'cms_block','4','content'); /*!40000 ALTER TABLE `media_content_asset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_gallery_asset` -- DROP TABLE IF EXISTS `media_gallery_asset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_gallery_asset` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `path` text COMMENT 'Path', `title` varchar(255) DEFAULT NULL COMMENT 'Title', `description` text COMMENT 'Description', `source` varchar(255) DEFAULT NULL COMMENT 'Source', `hash` varchar(255) DEFAULT NULL COMMENT 'File hash', `content_type` varchar(255) DEFAULT NULL COMMENT 'Content Type', `width` int unsigned NOT NULL DEFAULT '0' COMMENT 'Width', `height` int unsigned NOT NULL DEFAULT '0' COMMENT 'Height', `size` int unsigned NOT NULL COMMENT 'Asset file size in bytes', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`id`), KEY `MEDIA_GALLERY_ASSET_ID` (`id`), FULLTEXT KEY `MEDIA_GALLERY_ASSET_TITLE` (`title`) ) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Asset'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_gallery_asset` -- LOCK TABLES `media_gallery_asset` WRITE; /*!40000 ALTER TABLE `media_gallery_asset` DISABLE KEYS */; INSERT INTO `media_gallery_asset` VALUES (2,'wysiwyg/Logo_PNG.png','Logo_PNG',NULL,'Local','7ea4e0115db23f4e5c9d0de0dd78b16d5d99aa36','image/png',2480,2480,86555,'2024-02-07 08:17:57','2024-02-07 08:17:57'),(3,'wysiwyg/Redes_sociales2.png','Redes_sociales2',NULL,'Local','ed0af232f04829bfbc7ba7181d1c9c8562331240','image/png',533,533,14051,'2024-02-07 08:44:45','2024-02-07 08:44:45'),(4,'wysiwyg/Redes_sociales.png','Redes_sociales',NULL,'Local','153b29030de4989c4ab28f406cdf08afe72bbc21','image/png',533,533,17996,'2024-02-07 08:44:45','2024-02-07 08:44:45'),(5,'wysiwyg/Redes_sociales3.png','Redes_sociales3',NULL,'Local','5f1a9d7d95952f8f0e271120d02936de7cbffb5b','image/png',533,533,14984,'2024-02-07 08:44:45','2024-02-07 08:44:45'),(7,'wysiwyg/Conector_Magento_SAP_Business_One.png','Conector_Magento_SAP_Business_One',NULL,'Local','88305a6111054b57781d515020ab6d63fc21ba10','image/png',613,84,22124,'2024-02-07 09:49:46','2024-02-07 09:49:46'),(8,'wysiwyg/NC_Desarrollos_logo2.png','NC_Desarrollos_logo2',NULL,'Local','df6fbfb538070a64abc88c32c9cb1163f4dcff68','image/png',1067,533,12252,'2024-02-07 13:41:38','2024-02-07 13:41:38'),(9,'wysiwyg/Fondo_degradado.png','Fondo_degradado',NULL,'Local','5a7d62312a499da2bb603fc3a7de54c56549ed40','image/png',800,378,2119,'2024-02-08 12:07:57','2024-02-08 12:07:57'),(12,'wysiwyg/SAP_Business_One_Magento_Integration.jpg','SAP_Business_One_Magento_Integration',NULL,'Local','fdb31e12d3bf95dc77fab17bb3a3753ca4597e40','image/jpg',567,416,199898,'2024-02-08 12:38:27','2024-02-08 12:38:27'),(13,'wysiwyg/Funcionalidades.png','Funcionalidades',NULL,'Local','f2a4a66e4142e47ed25b925bee335482fceb1468','image/png',533,533,10936,'2024-02-08 13:36:15','2024-02-08 13:36:15'),(14,'wysiwyg/Funcionalidades2.png','Funcionalidades2',NULL,'Local','404ac245a1c7a17839f0b6153752ec5842ed9c97','image/png',533,533,10552,'2024-02-08 13:36:15','2024-02-08 13:36:15'),(15,'wysiwyg/Funcionalidades3.png','Funcionalidades3',NULL,'Local','4a005dc5a809047215e95471789c37a0901be488','image/png',533,533,13427,'2024-02-08 13:36:15','2024-02-08 13:36:15'),(16,'wysiwyg/Funcionalidades4.png','Funcionalidades4',NULL,'Local','c3bbf52319d3039b4b3b54da84218332b26314cd','image/png',533,533,8405,'2024-02-08 13:36:15','2024-02-08 13:36:15'),(17,'wysiwyg/Fondo_degradado2.png','Fondo_degradado2',NULL,'Local','b22a21f4372afb0f920b0eef11e5b89a2b1c37c0','image/png',800,378,2121,'2024-02-08 13:52:04','2024-02-08 13:52:04'),(19,'wysiwyg/NC_Desarrollos_logo_blanco.png','NC_Desarrollos_logo_blanco',NULL,'Local','0f0a05771b4d857885cf7269fd65942f67da82cc','image/png',1067,263,11826,'2024-02-09 06:11:34','2024-02-09 06:11:34'),(20,'wysiwyg/Contacto2.png','Contacto2',NULL,'Local','1b5cdec8f7286a955ce3254d820f5a038825c667','image/png',533,533,13604,'2024-02-09 06:31:31','2024-02-09 06:31:31'),(21,'wysiwyg/Contacto.png','Contacto',NULL,'Local','552d3c9e2c306180681f9d9e6defd5bf7e0a709b','image/png',533,533,16910,'2024-02-09 06:31:31','2024-02-09 06:31:31'),(23,'wysiwyg/Roberto_Nieto.png','Roberto_Nieto',NULL,'Local','1c7d89f6e0d3c6a04e834160c3f75db2194036ab','image/png',533,533,159106,'2024-02-09 06:52:20','2024-02-09 06:52:20'),(24,'wysiwyg/Habla_con_expertos.png','Habla_con_expertos',NULL,'Local','2fada2c1edeb3a72ab2e3eddedefab44466ef71c','image/png',567,335,53958,'2024-02-09 07:02:52','2024-02-09 07:02:52'),(25,'wysiwyg/Piqueras_y_Crespo.png','Piqueras_y_Crespo',NULL,'Local','18437aa9bcc0dc68f42126dfb860b5214884faf2','image/png',567,340,376959,'2024-02-09 07:25:32','2024-02-09 07:25:32'),(26,'wysiwyg/Sonpo.jpg','Sonpo',NULL,'Local','9e3d7747501c67a9e8cfaa6379260723d0dffb66','image/jpg',567,340,95353,'2024-02-09 07:32:49','2024-02-09 07:32:49'),(27,'wysiwyg/NC_Desarrollos_conector.png','NC_Desarrollos_conector',NULL,'Local','f30af6101e5f520c9aadb052b5dc6b5e0bf41c2a','image/png',567,340,20169,'2024-02-09 07:40:45','2024-02-09 07:40:45'),(29,'wysiwyg/NC_Desarrollos_-_Magento_2_SAP_Integration_White.png','NC_Desarrollos_-_Magento_2_SAP_Integration_White',NULL,'Local','22ca1bca7022aefbcec6604bc4c99b6d8af5a4c6','image/png',533,533,10861,'2024-02-09 09:17:01','2024-02-09 09:17:01'),(36,'wysiwyg/Fondo_2.png','Fondo_2',NULL,'Local','794579079c21028daa635116c216935b741f8add','image/png',886,531,4574,'2024-02-09 13:44:07','2024-02-09 13:44:07'),(37,'wysiwyg/Fondo.png','Fondo',NULL,'Local','6b3796484019873781db9ce43ff33ed42700ab01','image/png',886,531,4741,'2024-02-09 13:44:07','2024-02-09 13:44:07'),(38,'wysiwyg/Fondo_3.png','Fondo_3',NULL,'Local','95d69f1fb4fb0a60e6d527887a6dcde097ecb719','image/png',886,531,4726,'2024-02-09 13:44:08','2024-02-09 13:44:08'),(43,'wysiwyg/Flujo_de_trabajo3.png','Flujo_de_trabajo3',NULL,'Local','aa2ce40d49d9ad2cc277488dda7cb0c3ebfb3bac','image/png',533,533,10675,'2024-02-12 06:26:38','2024-02-12 06:26:38'),(44,'wysiwyg/Flujo_de_trabajo2.png','Flujo_de_trabajo2',NULL,'Local','816a0bcb317cc1fabdcaa90f59a471dc460f776b','image/png',533,533,12902,'2024-02-12 06:26:38','2024-02-12 06:26:38'),(45,'wysiwyg/Flujo_de_trabajo.png','Flujo_de_trabajo',NULL,'Local','7196260070a6cdc760e2398af904e9d5e6d3af0f','image/png',533,533,7323,'2024-02-12 06:26:38','2024-02-12 06:26:38'),(46,'wysiwyg/Flujo_de_trabajo4.png','Flujo_de_trabajo4',NULL,'Local','7060e1372ec2fa1cd976c1f20d394942935e7857','image/png',533,533,14129,'2024-02-12 06:26:39','2024-02-12 06:26:39'),(49,'wysiwyg/Borja.png','Borja',NULL,'Local','8c3a70b2091d2ba1ecf98c69b4eac14e51756fd4','image/png',1100,1104,1196134,'2024-02-12 07:33:38','2024-02-12 07:33:38'),(50,'wysiwyg/flaticon.png','flaticon',NULL,'Local','ee919332705eb7b10a442c59bbe52ae341d7a323','image/png',533,533,13877,'2024-02-12 08:58:17','2024-02-12 08:58:17'); /*!40000 ALTER TABLE `media_gallery_asset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_gallery_asset_keyword` -- DROP TABLE IF EXISTS `media_gallery_asset_keyword`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_gallery_asset_keyword` ( `keyword_id` int unsigned NOT NULL COMMENT 'Keyword Id', `asset_id` int unsigned NOT NULL COMMENT 'Asset ID', PRIMARY KEY (`keyword_id`,`asset_id`), KEY `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID` (`asset_id`), KEY `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID` (`keyword_id`), CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`asset_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE, CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID_MEDIA_GALLERY_KEYWORD_ID` FOREIGN KEY (`keyword_id`) REFERENCES `media_gallery_keyword` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Asset Keyword'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_gallery_asset_keyword` -- LOCK TABLES `media_gallery_asset_keyword` WRITE; /*!40000 ALTER TABLE `media_gallery_asset_keyword` DISABLE KEYS */; /*!40000 ALTER TABLE `media_gallery_asset_keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_gallery_keyword` -- DROP TABLE IF EXISTS `media_gallery_keyword`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_gallery_keyword` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Keyword ID', `keyword` varchar(255) NOT NULL COMMENT 'Keyword', PRIMARY KEY (`id`), UNIQUE KEY `MEDIA_GALLERY_KEYWORD_KEYWORD` (`keyword`), KEY `MEDIA_GALLERY_KEYWORD_ID` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Media Gallery Keyword'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_gallery_keyword` -- LOCK TABLES `media_gallery_keyword` WRITE; /*!40000 ALTER TABLE `media_gallery_keyword` DISABLE KEYS */; /*!40000 ALTER TABLE `media_gallery_keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mview_state` -- DROP TABLE IF EXISTS `mview_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `mview_state` ( `state_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'View State ID', `view_id` varchar(255) DEFAULT NULL COMMENT 'View ID', `mode` varchar(16) DEFAULT 'disabled' COMMENT 'View Mode', `status` varchar(16) DEFAULT 'idle' COMMENT 'View Status', `updated` datetime DEFAULT NULL COMMENT 'View updated time', `version_id` int unsigned DEFAULT NULL COMMENT 'View Version ID', PRIMARY KEY (`state_id`), KEY `MVIEW_STATE_VIEW_ID` (`view_id`), KEY `MVIEW_STATE_MODE` (`mode`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='View State'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mview_state` -- LOCK TABLES `mview_state` WRITE; /*!40000 ALTER TABLE `mview_state` DISABLE KEYS */; INSERT INTO `mview_state` VALUES (1,'design_config_dummy','enabled','idle','2024-03-11 12:30:09',0),(2,'customer_dummy','enabled','idle','2024-03-14 08:31:04',0); /*!40000 ALTER TABLE `mview_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_problem` -- DROP TABLE IF EXISTS `newsletter_problem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_problem` ( `problem_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Problem ID', `subscriber_id` int unsigned DEFAULT NULL COMMENT 'Subscriber ID', `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID', `problem_error_code` int unsigned DEFAULT '0' COMMENT 'Problem Error Code', `problem_error_text` varchar(200) DEFAULT NULL COMMENT 'Problem Error Text', PRIMARY KEY (`problem_id`), KEY `NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`), KEY `NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`), CONSTRAINT `NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE, CONSTRAINT `NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Problems'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_problem` -- LOCK TABLES `newsletter_problem` WRITE; /*!40000 ALTER TABLE `newsletter_problem` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_problem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue` -- DROP TABLE IF EXISTS `newsletter_queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_queue` ( `queue_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID', `template_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Template ID', `newsletter_type` int DEFAULT NULL COMMENT 'Newsletter Type', `newsletter_text` text COMMENT 'Newsletter Text', `newsletter_styles` text COMMENT 'Newsletter Styles', `newsletter_subject` varchar(200) DEFAULT NULL COMMENT 'Newsletter Subject', `newsletter_sender_name` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Name', `newsletter_sender_email` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Email', `queue_status` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue Status', `queue_start_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Start At', `queue_finish_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Finish At', PRIMARY KEY (`queue_id`), KEY `NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`), CONSTRAINT `NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_queue` -- LOCK TABLES `newsletter_queue` WRITE; /*!40000 ALTER TABLE `newsletter_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue_link` -- DROP TABLE IF EXISTS `newsletter_queue_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_queue_link` ( `queue_link_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Link ID', `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID', `subscriber_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Subscriber ID', `letter_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Letter Sent At', PRIMARY KEY (`queue_link_id`), KEY `NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`), KEY `NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`), CONSTRAINT `NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE, CONSTRAINT `NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue Link'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_queue_link` -- LOCK TABLES `newsletter_queue_link` WRITE; /*!40000 ALTER TABLE `newsletter_queue_link` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_queue_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue_store_link` -- DROP TABLE IF EXISTS `newsletter_queue_store_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_queue_store_link` ( `queue_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Queue ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', PRIMARY KEY (`queue_id`,`store_id`), KEY `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`), CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE, CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Queue Store Link'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_queue_store_link` -- LOCK TABLES `newsletter_queue_store_link` WRITE; /*!40000 ALTER TABLE `newsletter_queue_store_link` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_queue_store_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_subscriber` -- DROP TABLE IF EXISTS `newsletter_subscriber`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_subscriber` ( `subscriber_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Subscriber ID', `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID', `change_status_at` timestamp NULL DEFAULT NULL COMMENT 'Change Status At', `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `subscriber_email` varchar(150) DEFAULT NULL COMMENT 'Subscriber Email', `subscriber_status` int NOT NULL DEFAULT '0' COMMENT 'Subscriber Status', `subscriber_confirm_code` varchar(32) DEFAULT 'NULL' COMMENT 'Subscriber Confirm Code', PRIMARY KEY (`subscriber_id`), KEY `NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`), KEY `NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`), KEY `NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`), CONSTRAINT `NEWSLETTER_SUBSCRIBER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Subscriber'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_subscriber` -- LOCK TABLES `newsletter_subscriber` WRITE; /*!40000 ALTER TABLE `newsletter_subscriber` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_template` -- DROP TABLE IF EXISTS `newsletter_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletter_template` ( `template_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID', `template_code` varchar(150) DEFAULT NULL COMMENT 'Template Code', `template_text` text COMMENT 'Template Text', `template_styles` text COMMENT 'Template Styles', `template_type` int unsigned DEFAULT NULL COMMENT 'Template Type', `template_subject` varchar(200) DEFAULT NULL COMMENT 'Template Subject', `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name', `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email', `template_actual` smallint unsigned DEFAULT '1' COMMENT 'Template Actual', `added_at` timestamp NULL DEFAULT NULL COMMENT 'Added At', `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At', `is_legacy` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Should the template render in legacy mode', PRIMARY KEY (`template_id`), KEY `NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`), KEY `NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`), KEY `NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Newsletter Template'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletter_template` -- LOCK TABLES `newsletter_template` WRITE; /*!40000 ALTER TABLE `newsletter_template` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_consumer` -- DROP TABLE IF EXISTS `oauth_consumer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth_consumer` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `name` varchar(255) NOT NULL COMMENT 'Name of consumer', `key` varchar(32) NOT NULL COMMENT 'Key code', `secret` varchar(128) NOT NULL COMMENT 'Secret code', `callback_url` text COMMENT 'Callback URL', `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL', PRIMARY KEY (`entity_id`), UNIQUE KEY `OAUTH_CONSUMER_KEY` (`key`), UNIQUE KEY `OAUTH_CONSUMER_SECRET` (`secret`), KEY `OAUTH_CONSUMER_CREATED_AT` (`created_at`), KEY `OAUTH_CONSUMER_UPDATED_AT` (`updated_at`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Consumers'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oauth_consumer` -- LOCK TABLES `oauth_consumer` WRITE; /*!40000 ALTER TABLE `oauth_consumer` DISABLE KEYS */; INSERT INTO `oauth_consumer` VALUES (1,'2023-12-19 07:00:02','0000-00-00 00:00:00','Integration1','e48st4b68fn5wfiogxq6hnf4qnd4swnl','0:3:Wk1zHXwwFfiJSHkTAtvmES45BUypskxHiPavRg6YpQKb+jmIyrFoga5JK8kXjS7nP1s+ziru1TXNSNqe',NULL,''); /*!40000 ALTER TABLE `oauth_consumer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_nonce` -- DROP TABLE IF EXISTS `oauth_nonce`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth_nonce` ( `nonce` varchar(32) NOT NULL COMMENT 'Nonce String', `timestamp` int unsigned NOT NULL COMMENT 'Nonce Timestamp', `consumer_id` int unsigned NOT NULL COMMENT 'Consumer ID', PRIMARY KEY (`nonce`,`consumer_id`), KEY `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`), KEY `OAUTH_NONCE_TIMESTAMP` (`timestamp`), CONSTRAINT `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Nonce'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oauth_nonce` -- LOCK TABLES `oauth_nonce` WRITE; /*!40000 ALTER TABLE `oauth_nonce` DISABLE KEYS */; /*!40000 ALTER TABLE `oauth_nonce` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_token` -- DROP TABLE IF EXISTS `oauth_token`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth_token` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `consumer_id` int unsigned DEFAULT NULL COMMENT 'Oauth Consumer ID', `admin_id` int unsigned DEFAULT NULL COMMENT 'Admin user ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer user ID', `type` varchar(16) NOT NULL COMMENT 'Token Type', `token` varchar(32) NOT NULL COMMENT 'Token', `secret` varchar(128) NOT NULL COMMENT 'Token Secret', `verifier` varchar(32) DEFAULT NULL COMMENT 'Token Verifier', `callback_url` text NOT NULL COMMENT 'Token Callback URL', `revoked` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token revoked', `authorized` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Token authorized', `user_type` int DEFAULT NULL COMMENT 'User type', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Token creation timestamp', PRIMARY KEY (`entity_id`), UNIQUE KEY `OAUTH_TOKEN_TOKEN` (`token`), KEY `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`), KEY `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`), KEY `OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`), KEY `OAUTH_TOKEN_CREATED_AT` (`created_at`), CONSTRAINT `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE, CONSTRAINT `OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='OAuth Tokens'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oauth_token` -- LOCK TABLES `oauth_token` WRITE; /*!40000 ALTER TABLE `oauth_token` DISABLE KEYS */; INSERT INTO `oauth_token` VALUES (1,1,NULL,NULL,'access','av2u7ggpk0gjjebzjprq2p2mk64oairq','0:3:cdZy94N2lfBkLbEXZVFMMMeegpQa9s41U90oK1oJSAq94cX1dS/OhHzJe6MGxD0t1RJNkrsZoN5miiR1','mp0ld80nonqysbcppkiexwhnozjdm21m','oob',0,0,1,'2023-12-19 07:00:02'); /*!40000 ALTER TABLE `oauth_token` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_token_request_log` -- DROP TABLE IF EXISTS `oauth_token_request_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth_token_request_log` ( `log_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login', `user_type` smallint unsigned NOT NULL COMMENT 'User type (admin or customer)', `failures_count` smallint 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 `OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Log of token request authentication failures.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `oauth_token_request_log` -- LOCK TABLES `oauth_token_request_log` WRITE; /*!40000 ALTER TABLE `oauth_token_request_log` DISABLE KEYS */; /*!40000 ALTER TABLE `oauth_token_request_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pagebuilder_template` -- DROP TABLE IF EXISTS `pagebuilder_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pagebuilder_template` ( `template_id` int NOT NULL AUTO_INCREMENT COMMENT 'Template ID Auto Increment', `name` varchar(1024) NOT NULL COMMENT 'Template Name', `preview_image` varchar(1024) DEFAULT NULL COMMENT 'Template Preview Image', `template` longtext NOT NULL COMMENT 'Master Format HTML', `created_for` varchar(255) DEFAULT NULL COMMENT 'Created For', `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', PRIMARY KEY (`template_id`), FULLTEXT KEY `PAGEBUILDER_TEMPLATE_NAME` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Page Builder Templates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pagebuilder_template` -- LOCK TABLES `pagebuilder_template` WRITE; /*!40000 ALTER TABLE `pagebuilder_template` DISABLE KEYS */; /*!40000 ALTER TABLE `pagebuilder_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_reset_request_event` -- DROP TABLE IF EXISTS `password_reset_request_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_reset_request_event` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `request_type` smallint 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 `PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`), KEY `PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Password Reset Request Event under a security control'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_reset_request_event` -- LOCK TABLES `password_reset_request_event` WRITE; /*!40000 ALTER TABLE `password_reset_request_event` DISABLE KEYS */; /*!40000 ALTER TABLE `password_reset_request_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patch_list` -- DROP TABLE IF EXISTS `patch_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `patch_list` ( `patch_id` int 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=168 DEFAULT CHARSET=utf8mb3 COMMENT='List of data/schema patches'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `patch_list` -- LOCK TABLES `patch_list` WRITE; /*!40000 ALTER TABLE `patch_list` DISABLE KEYS */; INSERT INTO `patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\CatalogRule\\Setup\\Patch\\Schema\\CleanUpProductPriceReplicaTable'),(4,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(5,'Magento\\Review\\Setup\\Patch\\Schema\\AddUniqueConstraintToReviewEntitySummary'),(6,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(7,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(8,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(9,'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),(10,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAlbania'),(11,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForArgentina'),(12,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(13,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(14,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(15,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelarus'),(16,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),(17,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBolivia'),(18,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBulgaria'),(19,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChile'),(20,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),(21,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),(22,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCostaRica'),(23,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCzechia'),(24,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForDenmark'),(25,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForEcuador'),(26,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGreece'),(27,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGuyana'),(28,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIceland'),(29,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForItaly'),(30,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(31,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForParaguay'),(32,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPeru'),(33,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),(34,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPortugal'),(35,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSuriname'),(36,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSweden'),(37,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUkraine'),(38,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUruguay'),(39,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForVenezuela'),(40,'Magento\\Directory\\Setup\\Patch\\Data\\AddRegionsForIndia'),(41,'Magento\\Directory\\Setup\\Patch\\Data\\UpdateRegionNamesForSwitzerland'),(42,'Magento\\Config\\Setup\\Patch\\Data\\RemoveTinymceConfig'),(43,'Magento\\Config\\Setup\\Patch\\Data\\UnsetTinymce3'),(44,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(45,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(46,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(47,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(48,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(49,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(50,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(51,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(52,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(53,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(54,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(55,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(56,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(57,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(58,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(59,'Magento\\Customer\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(60,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAddressAttributesSortOrder'),(61,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(62,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(63,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateDefaultCustomerGroupInConfig'),(64,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(65,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(66,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(67,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(68,'Magento\\Security\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(69,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(70,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(71,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(72,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(73,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(74,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(75,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(76,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(77,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(78,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(79,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(80,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),(81,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMultiselectAttributesBackendTypes'),(82,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductDescriptionOrder'),(83,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(84,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductUrlKey'),(85,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(86,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(87,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(88,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(89,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(90,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(91,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(92,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeyForProducts'),(93,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),(94,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(95,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(96,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(97,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(98,'Magento\\Quote\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(99,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(100,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(101,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(102,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(103,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(104,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),(105,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(106,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(107,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(108,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(109,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(110,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(111,'Magento\\Sales\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(112,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(113,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(114,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(115,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeConsumerSecret'),(116,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeOauthToken'),(117,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(118,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(119,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(120,'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(121,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(122,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchRemovalNotification'),(123,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(124,'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(125,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(126,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(127,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(128,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(129,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(130,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(131,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(132,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(133,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(134,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(135,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(136,'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),(137,'Magento\\MediaGalleryUi\\Setup\\Patch\\Data\\AddMediaGalleryPermissions'),(138,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(139,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(140,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(141,'Magento\\Elasticsearch\\Setup\\Patch\\Data\\InvalidateIndex'),(142,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(143,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(144,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateBmltoPayLater'),(145,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(146,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonLabel'),(147,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonSize'),(148,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(149,'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),(150,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(151,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(152,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(153,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(154,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(155,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(156,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(157,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(158,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(159,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(160,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(161,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(162,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(163,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(164,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(165,'Magento\\Wishlist\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(166,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpdateProductAttribute'),(167,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpgradePageBuilderStripStyles'); /*!40000 ALTER TABLE `patch_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_billing_agreement` -- DROP TABLE IF EXISTS `paypal_billing_agreement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_billing_agreement` ( `agreement_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID', `customer_id` int 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 unsigned DEFAULT NULL COMMENT 'Store ID', `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label', PRIMARY KEY (`agreement_id`), KEY `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`), KEY `PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`), CONSTRAINT `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PAYPAL_BILLING_AGREEMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Billing Agreement'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_billing_agreement` -- LOCK TABLES `paypal_billing_agreement` WRITE; /*!40000 ALTER TABLE `paypal_billing_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_billing_agreement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_billing_agreement_order` -- DROP TABLE IF EXISTS `paypal_billing_agreement_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_billing_agreement_order` ( `agreement_id` int unsigned NOT NULL COMMENT 'Agreement ID', `order_id` int unsigned NOT NULL COMMENT 'Order ID', PRIMARY KEY (`agreement_id`,`order_id`), KEY `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`), CONSTRAINT `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PAYPAL_BILLING_AGRT_ORDER_AGRT_ID_PAYPAL_BILLING_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Billing Agreement Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_billing_agreement_order` -- LOCK TABLES `paypal_billing_agreement_order` WRITE; /*!40000 ALTER TABLE `paypal_billing_agreement_order` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_billing_agreement_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_cert` -- DROP TABLE IF EXISTS `paypal_cert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_cert` ( `cert_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert ID', `website_id` smallint 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 `PAYPAL_CERT_WEBSITE_ID` (`website_id`), CONSTRAINT `PAYPAL_CERT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Certificate Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_cert` -- LOCK TABLES `paypal_cert` WRITE; /*!40000 ALTER TABLE `paypal_cert` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_cert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_payment_transaction` -- DROP TABLE IF EXISTS `paypal_payment_transaction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_payment_transaction` ( `transaction_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID', `additional_information` blob COMMENT 'Additional Information', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', PRIMARY KEY (`transaction_id`), UNIQUE KEY `PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='PayPal Payflow Link Payment Transaction'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_payment_transaction` -- LOCK TABLES `paypal_payment_transaction` WRITE; /*!40000 ALTER TABLE `paypal_payment_transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_payment_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_settlement_report` -- DROP TABLE IF EXISTS `paypal_settlement_report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_settlement_report` ( `report_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Report ID', `report_date` date DEFAULT NULL COMMENT 'Report Date', `account_id` varchar(64) DEFAULT NULL COMMENT 'Account ID', `filename` varchar(24) DEFAULT NULL COMMENT 'Filename', `last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last Modified', PRIMARY KEY (`report_id`), UNIQUE KEY `PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Settlement Report Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_settlement_report` -- LOCK TABLES `paypal_settlement_report` WRITE; /*!40000 ALTER TABLE `paypal_settlement_report` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_settlement_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_settlement_report_row` -- DROP TABLE IF EXISTS `paypal_settlement_report_row`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `paypal_settlement_report_row` ( `row_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID', `report_id` int unsigned NOT NULL COMMENT 'Report ID', `transaction_id` varchar(19) DEFAULT NULL COMMENT 'Transaction ID', `invoice_id` varchar(127) DEFAULT NULL COMMENT 'Invoice ID', `paypal_reference_id` varchar(19) DEFAULT NULL COMMENT 'Paypal Reference ID', `paypal_reference_id_type` varchar(3) DEFAULT NULL COMMENT 'Paypal Reference ID Type', `transaction_event_code` varchar(5) DEFAULT NULL COMMENT 'Transaction Event Code', `transaction_initiation_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Initiation Date', `transaction_completion_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Completion Date', `transaction_debit_or_credit` varchar(2) NOT NULL DEFAULT 'CR' COMMENT 'Transaction Debit Or Credit', `gross_transaction_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Gross Transaction Amount', `gross_transaction_currency` varchar(3) DEFAULT NULL COMMENT 'Gross Transaction Currency', `fee_debit_or_credit` varchar(2) DEFAULT NULL COMMENT 'Fee Debit Or Credit', `fee_amount` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Fee Amount', `fee_currency` varchar(3) DEFAULT NULL COMMENT 'Fee Currency', `custom_field` varchar(255) DEFAULT NULL COMMENT 'Custom Field', `consumer_id` varchar(127) DEFAULT NULL COMMENT 'Consumer ID', `payment_tracking_id` varchar(255) DEFAULT NULL COMMENT 'Payment Tracking ID', `store_id` varchar(50) DEFAULT NULL COMMENT 'Store ID', PRIMARY KEY (`row_id`), KEY `PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`), CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Paypal Settlement Report Row Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paypal_settlement_report_row` -- LOCK TABLES `paypal_settlement_report_row` WRITE; /*!40000 ALTER TABLE `paypal_settlement_report_row` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_settlement_report_row` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `persistent_session` -- DROP TABLE IF EXISTS `persistent_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `persistent_session` ( `persistent_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Session ID', `key` varchar(50) NOT NULL COMMENT 'Unique cookie key', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `info` text COMMENT 'Session Data', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`persistent_id`), UNIQUE KEY `PERSISTENT_SESSION_KEY` (`key`), UNIQUE KEY `PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`), KEY `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` (`website_id`), KEY `PERSISTENT_SESSION_UPDATED_AT` (`updated_at`), CONSTRAINT `PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Persistent Session'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `persistent_session` -- LOCK TABLES `persistent_session` WRITE; /*!40000 ALTER TABLE `persistent_session` DISABLE KEYS */; /*!40000 ALTER TABLE `persistent_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_alert_price` -- DROP TABLE IF EXISTS `product_alert_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_alert_price` ( `alert_price_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert price ID', `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `price` decimal(20,6) NOT NULL DEFAULT '0.000000' COMMENT 'Price amount', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID', `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date', `last_send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert last send date', `send_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert send count', `status` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status', PRIMARY KEY (`alert_price_id`), KEY `PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`), KEY `PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`), KEY `PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`), KEY `PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`), CONSTRAINT `PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_PRICE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Product Alert Price'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_alert_price` -- LOCK TABLES `product_alert_price` WRITE; /*!40000 ALTER TABLE `product_alert_price` DISABLE KEYS */; /*!40000 ALTER TABLE `product_alert_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_alert_stock` -- DROP TABLE IF EXISTS `product_alert_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_alert_stock` ( `alert_stock_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock ID', `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID', `add_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Product alert add date', `send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert send date', `send_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Send Count', `status` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Product alert status', PRIMARY KEY (`alert_stock_id`), KEY `PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`), KEY `PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`), KEY `PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`), KEY `PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`), CONSTRAINT `PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_STOCK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_STOCK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `PRODUCT_ALERT_STOCK_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Product Alert Stock'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_alert_stock` -- LOCK TABLES `product_alert_stock` WRITE; /*!40000 ALTER TABLE `product_alert_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `product_alert_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue` -- DROP TABLE IF EXISTS `queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queue` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID', `name` varchar(255) DEFAULT NULL COMMENT 'Queue name', PRIMARY KEY (`id`), UNIQUE KEY `QUEUE_NAME` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COMMENT='Table storing unique queues'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue` -- LOCK TABLES `queue` WRITE; /*!40000 ALTER TABLE `queue` DISABLE KEYS */; INSERT INTO `queue` VALUES (14,'async.operations.all'),(4,'catalog_website_attribute_value_sync'),(9,'codegenerator'),(5,'export'),(6,'media.content.synchronization'),(7,'media.gallery.renditions.update'),(8,'media.gallery.synchronization'),(13,'media.storage.catalog.image.resize'),(2,'product_action_attribute.update'),(3,'product_action_attribute.website.update'),(12,'product_alert.queue'),(11,'sales.rule.quote.trigger.recollect'),(10,'sales.rule.update.coupon.usage'),(1,'saveConfig'); /*!40000 ALTER TABLE `queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue_lock` -- DROP TABLE IF EXISTS `queue_lock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queue_lock` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID', `message_code` varchar(255) NOT NULL DEFAULT '' COMMENT 'Message Code', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Created At', PRIMARY KEY (`id`), UNIQUE KEY `QUEUE_LOCK_MESSAGE_CODE` (`message_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Messages that were processed are inserted here to be locked.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue_lock` -- LOCK TABLES `queue_lock` WRITE; /*!40000 ALTER TABLE `queue_lock` DISABLE KEYS */; /*!40000 ALTER TABLE `queue_lock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue_message` -- DROP TABLE IF EXISTS `queue_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queue_message` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID', `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic', `body` longtext COMMENT 'Message body', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Queue messages'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue_message` -- LOCK TABLES `queue_message` WRITE; /*!40000 ALTER TABLE `queue_message` DISABLE KEYS */; /*!40000 ALTER TABLE `queue_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue_message_status` -- DROP TABLE IF EXISTS `queue_message_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queue_message_status` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Relation ID', `queue_id` int unsigned NOT NULL COMMENT 'Queue ID', `message_id` bigint unsigned NOT NULL COMMENT 'Message ID', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `status` smallint unsigned NOT NULL COMMENT 'Message status in particular queue', `number_of_trials` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Number of trials to processed failed message processing', PRIMARY KEY (`id`), UNIQUE KEY `QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`), KEY `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` (`message_id`), KEY `QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`), CONSTRAINT `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `queue_message` (`id`) ON DELETE CASCADE, CONSTRAINT `QUEUE_MESSAGE_STATUS_QUEUE_ID_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Relation table to keep associations between queues and messages'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue_message_status` -- LOCK TABLES `queue_message_status` WRITE; /*!40000 ALTER TABLE `queue_message_status` DISABLE KEYS */; /*!40000 ALTER TABLE `queue_message_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `queue_poison_pill` -- DROP TABLE IF EXISTS `queue_poison_pill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `queue_poison_pill` ( `version` varchar(255) NOT NULL COMMENT 'Poison Pill version.' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sequence table for poison pill versions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `queue_poison_pill` -- LOCK TABLES `queue_poison_pill` WRITE; /*!40000 ALTER TABLE `queue_poison_pill` DISABLE KEYS */; INSERT INTO `queue_poison_pill` VALUES ('version-65f2bcf1d2264'); /*!40000 ALTER TABLE `queue_poison_pill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote` -- DROP TABLE IF EXISTS `quote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `converted_at` timestamp NULL DEFAULT NULL COMMENT 'Converted At', `is_active` smallint unsigned DEFAULT '1' COMMENT 'Is Active', `is_virtual` smallint unsigned DEFAULT '0' COMMENT 'Is Virtual', `is_multi_shipping` smallint unsigned DEFAULT '0' COMMENT 'Is Multi Shipping', `items_count` int unsigned DEFAULT '0' COMMENT 'Items Count', `items_qty` decimal(12,4) DEFAULT '0.0000' COMMENT 'Items Qty', `orig_order_id` int unsigned DEFAULT '0' COMMENT 'Orig Order ID', `store_to_base_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Base Rate', `store_to_quote_rate` decimal(12,4) DEFAULT '0.0000' COMMENT 'Store To Quote Rate', `base_currency_code` varchar(255) DEFAULT NULL COMMENT 'Base Currency Code', `store_currency_code` varchar(255) DEFAULT NULL COMMENT 'Store Currency Code', `quote_currency_code` varchar(255) DEFAULT NULL COMMENT 'Quote Currency Code', `grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Grand Total', `base_grand_total` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Grand Total', `checkout_method` varchar(255) DEFAULT NULL COMMENT 'Checkout Method', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `customer_tax_class_id` int unsigned DEFAULT NULL COMMENT 'Customer Tax Class ID', `customer_group_id` int unsigned DEFAULT '0' COMMENT 'Customer Group ID', `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email', `customer_prefix` varchar(40) DEFAULT NULL COMMENT 'Customer Prefix', `customer_firstname` varchar(255) DEFAULT NULL COMMENT 'Customer Firstname', `customer_middlename` varchar(40) DEFAULT NULL COMMENT 'Customer Middlename', `customer_lastname` varchar(255) DEFAULT NULL COMMENT 'Customer Lastname', `customer_suffix` varchar(40) DEFAULT NULL COMMENT 'Customer Suffix', `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob', `customer_note` text COMMENT 'Customer Note', `customer_note_notify` smallint unsigned DEFAULT '1' COMMENT 'Customer Note Notify', `customer_is_guest` smallint unsigned DEFAULT '0' COMMENT 'Customer Is Guest', `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip', `applied_rule_ids` varchar(255) DEFAULT NULL COMMENT 'Applied Rule Ids', `reserved_order_id` varchar(64) DEFAULT NULL COMMENT 'Reserved Order ID', `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash', `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code', `global_currency_code` varchar(255) DEFAULT NULL COMMENT 'Global Currency Code', `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate', `base_to_quote_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Quote Rate', `customer_taxvat` varchar(255) DEFAULT NULL COMMENT 'Customer Taxvat', `customer_gender` varchar(255) DEFAULT NULL COMMENT 'Customer Gender', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal', `subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal With Discount', `base_subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal With Discount', `is_changed` int unsigned DEFAULT NULL COMMENT 'Is Changed', `trigger_recollect` smallint NOT NULL DEFAULT '0' COMMENT 'Trigger Recollect', `ext_shipping_info` text COMMENT 'Ext Shipping Info', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `is_persistent` smallint unsigned DEFAULT '0' COMMENT 'Is Quote Persistent', PRIMARY KEY (`entity_id`), KEY `QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`), KEY `QUOTE_STORE_ID_UPDATED_AT` (`store_id`,`updated_at`), CONSTRAINT `QUOTE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote` -- LOCK TABLES `quote` WRITE; /*!40000 ALTER TABLE `quote` DISABLE KEYS */; /*!40000 ALTER TABLE `quote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_address` -- DROP TABLE IF EXISTS `quote_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_address` ( `address_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address ID', `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `save_in_address_book` smallint DEFAULT '0' COMMENT 'Save In Address Book', `customer_address_id` int unsigned DEFAULT NULL COMMENT 'Customer Address ID', `address_type` varchar(10) DEFAULT NULL COMMENT 'Address Type', `email` varchar(255) DEFAULT NULL COMMENT 'Email', `prefix` varchar(40) DEFAULT NULL COMMENT 'Prefix', `firstname` varchar(255) DEFAULT NULL, `middlename` varchar(40) DEFAULT NULL, `lastname` varchar(255) DEFAULT NULL, `suffix` varchar(40) DEFAULT NULL COMMENT 'Suffix', `company` varchar(255) DEFAULT NULL COMMENT 'Company', `street` varchar(255) DEFAULT NULL COMMENT 'Street', `city` varchar(255) DEFAULT NULL, `region` varchar(255) DEFAULT NULL, `region_id` int unsigned DEFAULT NULL COMMENT 'Region ID', `postcode` varchar(20) DEFAULT NULL COMMENT 'Postcode', `country_id` varchar(30) DEFAULT NULL COMMENT 'Country ID', `telephone` varchar(255) DEFAULT NULL, `fax` varchar(255) DEFAULT NULL, `same_as_billing` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Same As Billing', `collect_shipping_rates` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Collect Shipping Rates', `shipping_method` varchar(120) DEFAULT NULL, `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description', `weight` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Weight', `subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal', `base_subtotal` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal', `subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal With Discount', `base_subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Subtotal With Discount', `tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Tax Amount', `shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Shipping Amount', `base_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Shipping Amount', `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount', `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount', `discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Discount Amount', `grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Grand Total', `base_grand_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Grand Total', `customer_notes` text COMMENT 'Customer Notes', `applied_taxes` text COMMENT 'Applied Taxes', `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description', `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount', `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount', `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax', `base_subtotal_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Total Incl Tax', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount', `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount', `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax', `vat_id` text COMMENT 'Vat ID', `vat_is_valid` smallint DEFAULT NULL COMMENT 'Vat Is Valid', `vat_request_id` text COMMENT 'Vat Request ID', `vat_request_date` text COMMENT 'Vat Request Date', `vat_request_success` smallint DEFAULT NULL COMMENT 'Vat Request Success', `validated_country_code` text COMMENT 'Validated Country Code', `validated_vat_number` text COMMENT 'Validated Vat Number', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping', PRIMARY KEY (`address_id`), KEY `QUOTE_ADDRESS_QUOTE_ID` (`quote_id`), CONSTRAINT `QUOTE_ADDRESS_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Address'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_address` -- LOCK TABLES `quote_address` WRITE; /*!40000 ALTER TABLE `quote_address` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_address_item` -- DROP TABLE IF EXISTS `quote_address_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_address_item` ( `address_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Item ID', `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID', `quote_address_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Address ID', `quote_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote Item ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount', `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount', `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total', `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total', `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount', `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount', `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount', `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `super_product_id` int unsigned DEFAULT NULL COMMENT 'Super Product ID', `parent_product_id` int unsigned DEFAULT NULL COMMENT 'Parent Product ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', `image` varchar(255) DEFAULT NULL COMMENT 'Image', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `description` text COMMENT 'Description', `is_qty_decimal` int unsigned DEFAULT NULL COMMENT 'Is Qty Decimal', `price` decimal(12,4) DEFAULT NULL COMMENT 'Price', `discount_percent` decimal(12,4) DEFAULT NULL COMMENT 'Discount Percent', `no_discount` int unsigned DEFAULT NULL COMMENT 'No Discount', `tax_percent` decimal(12,4) DEFAULT NULL COMMENT 'Tax Percent', `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price', `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost', `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `free_shipping` int unsigned DEFAULT NULL COMMENT 'Free Shipping', PRIMARY KEY (`address_item_id`), KEY `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`), KEY `QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`), KEY `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`), KEY `QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`), CONSTRAINT `QUOTE_ADDR_ITEM_PARENT_ITEM_ID_QUOTE_ADDR_ITEM_ADDR_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_address_item` (`address_item_id`) ON DELETE CASCADE, CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE, CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Address Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_address_item` -- LOCK TABLES `quote_address_item` WRITE; /*!40000 ALTER TABLE `quote_address_item` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_address_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_id_mask` -- DROP TABLE IF EXISTS `quote_id_mask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_id_mask` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `quote_id` int unsigned NOT NULL COMMENT 'Quote ID', `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID', PRIMARY KEY (`entity_id`,`quote_id`), KEY `QUOTE_ID_MASK_QUOTE_ID` (`quote_id`), KEY `QUOTE_ID_MASK_MASKED_ID` (`masked_id`), CONSTRAINT `QUOTE_ID_MASK_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Quote ID and masked ID mapping'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_id_mask` -- LOCK TABLES `quote_id_mask` WRITE; /*!40000 ALTER TABLE `quote_id_mask` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_id_mask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_item` -- DROP TABLE IF EXISTS `quote_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_item` ( `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID', `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID', `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `description` text COMMENT 'Description', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `is_qty_decimal` smallint unsigned DEFAULT NULL COMMENT 'Is Qty Decimal', `no_discount` smallint unsigned DEFAULT '0' COMMENT 'No Discount', `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight', `qty` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty', `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price', `base_price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price', `custom_price` decimal(20,4) DEFAULT NULL COMMENT 'Custom Price', `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent', `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount', `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent', `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount', `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total', `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total', `row_total_with_discount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Row Total With Discount', `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight', `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type', `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount', `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount', `original_custom_price` decimal(20,4) DEFAULT NULL COMMENT 'Original Custom Price', `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url', `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost', `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt', `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`item_id`), KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`), KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`), KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`), KEY `QUOTE_ITEM_STORE_ID` (`store_id`), CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE, CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_item` -- LOCK TABLES `quote_item` WRITE; /*!40000 ALTER TABLE `quote_item` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_item_option` -- DROP TABLE IF EXISTS `quote_item_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_item_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID', `item_id` int unsigned NOT NULL COMMENT 'Item ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `code` varchar(255) NOT NULL COMMENT 'Code', `value` text COMMENT 'Value', PRIMARY KEY (`option_id`), KEY `QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`), CONSTRAINT `QUOTE_ITEM_OPTION_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Item Option'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_item_option` -- LOCK TABLES `quote_item_option` WRITE; /*!40000 ALTER TABLE `quote_item_option` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_item_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_payment` -- DROP TABLE IF EXISTS `quote_payment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_payment` ( `payment_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payment ID', `quote_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quote ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `method` varchar(255) DEFAULT NULL COMMENT 'Method', `cc_type` varchar(255) DEFAULT NULL COMMENT 'Cc Type', `cc_number_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Number Enc', `cc_last_4` varchar(255) DEFAULT NULL COMMENT 'Cc Last 4', `cc_cid_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Cid Enc', `cc_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Owner', `cc_exp_month` varchar(255) DEFAULT NULL COMMENT 'Cc Exp Month', `cc_exp_year` smallint unsigned DEFAULT '0' COMMENT 'Cc Exp Year', `cc_ss_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Owner', `cc_ss_start_month` smallint unsigned DEFAULT '0' COMMENT 'Cc Ss Start Month', `cc_ss_start_year` smallint unsigned DEFAULT '0' COMMENT 'Cc Ss Start Year', `po_number` varchar(255) DEFAULT NULL COMMENT 'Po Number', `additional_data` text COMMENT 'Additional Data', `cc_ss_issue` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Issue', `additional_information` text COMMENT 'Additional Information', `paypal_payer_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer ID', `paypal_payer_status` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Status', `paypal_correlation_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Correlation ID', PRIMARY KEY (`payment_id`), KEY `QUOTE_PAYMENT_QUOTE_ID` (`quote_id`), CONSTRAINT `QUOTE_PAYMENT_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Payment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_payment` -- LOCK TABLES `quote_payment` WRITE; /*!40000 ALTER TABLE `quote_payment` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_payment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quote_shipping_rate` -- DROP TABLE IF EXISTS `quote_shipping_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quote_shipping_rate` ( `rate_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate ID', `address_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Address ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `carrier` varchar(255) DEFAULT NULL COMMENT 'Carrier', `carrier_title` varchar(255) DEFAULT NULL COMMENT 'Carrier Title', `code` varchar(255) DEFAULT NULL COMMENT 'Code', `method` varchar(255) DEFAULT NULL COMMENT 'Method', `method_description` text COMMENT 'Method Description', `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price', `error_message` text COMMENT 'Error Message', `method_title` text COMMENT 'Method Title', PRIMARY KEY (`rate_id`), KEY `QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`), CONSTRAINT `QUOTE_SHIPPING_RATE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Quote Shipping Rate'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quote_shipping_rate` -- LOCK TABLES `quote_shipping_rate` WRITE; /*!40000 ALTER TABLE `quote_shipping_rate` DISABLE KEYS */; /*!40000 ALTER TABLE `quote_shipping_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating` -- DROP TABLE IF EXISTS `rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating` ( `rating_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating ID', `entity_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code', `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Position On Storefront', `is_active` smallint NOT NULL DEFAULT '1' COMMENT 'Rating is active.', PRIMARY KEY (`rating_id`), UNIQUE KEY `RATING_RATING_CODE` (`rating_code`), KEY `RATING_ENTITY_ID` (`entity_id`), CONSTRAINT `RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Ratings'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating` -- LOCK TABLES `rating` WRITE; /*!40000 ALTER TABLE `rating` DISABLE KEYS */; INSERT INTO `rating` VALUES (1,1,'Quality',0,1),(2,1,'Value',0,1),(3,1,'Price',0,1); /*!40000 ALTER TABLE `rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_entity` -- DROP TABLE IF EXISTS `rating_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_entity` ( `entity_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code', PRIMARY KEY (`entity_id`), UNIQUE KEY `RATING_ENTITY_ENTITY_CODE` (`entity_code`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Rating entities'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_entity` -- LOCK TABLES `rating_entity` WRITE; /*!40000 ALTER TABLE `rating_entity` DISABLE KEYS */; INSERT INTO `rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review'); /*!40000 ALTER TABLE `rating_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option` -- DROP TABLE IF EXISTS `rating_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating Option ID', `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID', `code` varchar(32) NOT NULL COMMENT 'Rating Option Code', `value` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Option Value', `position` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Ration option position on Storefront', PRIMARY KEY (`option_id`), KEY `RATING_OPTION_RATING_ID` (`rating_id`), CONSTRAINT `RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COMMENT='Rating options'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_option` -- LOCK TABLES `rating_option` WRITE; /*!40000 ALTER TABLE `rating_option` DISABLE KEYS */; INSERT INTO `rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5); /*!40000 ALTER TABLE `rating_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option_vote` -- DROP TABLE IF EXISTS `rating_option_vote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_option_vote` ( `vote_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Vote ID', `option_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Vote option ID', `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP', `remote_ip_long` bigint NOT NULL DEFAULT '0' COMMENT 'Customer IP converted to long integer format', `customer_id` int unsigned DEFAULT '0' COMMENT 'Customer ID', `entity_pk_value` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID', `review_id` bigint unsigned DEFAULT NULL COMMENT 'Review ID', `percent` smallint NOT NULL DEFAULT '0' COMMENT 'Percent amount', `value` smallint NOT NULL DEFAULT '0' COMMENT 'Vote option value', PRIMARY KEY (`vote_id`), KEY `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`), KEY `RATING_OPTION_VOTE_OPTION_ID` (`option_id`), CONSTRAINT `RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE, CONSTRAINT `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating option values'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_option_vote` -- LOCK TABLES `rating_option_vote` WRITE; /*!40000 ALTER TABLE `rating_option_vote` DISABLE KEYS */; /*!40000 ALTER TABLE `rating_option_vote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option_vote_aggregated` -- DROP TABLE IF EXISTS `rating_option_vote_aggregated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_option_vote_aggregated` ( `primary_id` int NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation ID', `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID', `entity_pk_value` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `vote_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Vote dty', `vote_value_sum` int unsigned NOT NULL DEFAULT '0' COMMENT 'General vote sum', `percent` smallint NOT NULL DEFAULT '0' COMMENT 'Vote percent', `percent_approved` smallint DEFAULT '0' COMMENT 'Vote percent approved by admin', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', PRIMARY KEY (`primary_id`), KEY `RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`), KEY `RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`), CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE, CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating vote aggregated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_option_vote_aggregated` -- LOCK TABLES `rating_option_vote_aggregated` WRITE; /*!40000 ALTER TABLE `rating_option_vote_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `rating_option_vote_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_store` -- DROP TABLE IF EXISTS `rating_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_store` ( `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', PRIMARY KEY (`rating_id`,`store_id`), KEY `RATING_STORE_STORE_ID` (`store_id`), CONSTRAINT `RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE, CONSTRAINT `RATING_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating Store'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_store` -- LOCK TABLES `rating_store` WRITE; /*!40000 ALTER TABLE `rating_store` DISABLE KEYS */; /*!40000 ALTER TABLE `rating_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_title` -- DROP TABLE IF EXISTS `rating_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rating_title` ( `rating_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating ID', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `value` varchar(255) NOT NULL COMMENT 'Rating Label', PRIMARY KEY (`rating_id`,`store_id`), KEY `RATING_TITLE_STORE_ID` (`store_id`), CONSTRAINT `RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE, CONSTRAINT `RATING_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Rating Title'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rating_title` -- LOCK TABLES `rating_title` WRITE; /*!40000 ALTER TABLE `rating_title` DISABLE KEYS */; /*!40000 ALTER TABLE `rating_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `release_notification_viewer_log` -- DROP TABLE IF EXISTS `release_notification_viewer_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `release_notification_viewer_log` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `viewer_id` int unsigned NOT NULL COMMENT 'Viewer admin user ID', `last_view_version` varchar(16) NOT NULL COMMENT 'Viewer last view on product version', PRIMARY KEY (`id`), UNIQUE KEY `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`), CONSTRAINT `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`viewer_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Release Notification Viewer Log Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `release_notification_viewer_log` -- LOCK TABLES `release_notification_viewer_log` WRITE; /*!40000 ALTER TABLE `release_notification_viewer_log` DISABLE KEYS */; /*!40000 ALTER TABLE `release_notification_viewer_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_compared_product_index` -- DROP TABLE IF EXISTS `report_compared_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_compared_product_index` ( `index_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID', `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At', PRIMARY KEY (`index_id`), UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`), KEY `REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`), KEY `REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`), CONSTRAINT `REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_CMPD_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Compared Product Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_compared_product_index` -- LOCK TABLES `report_compared_product_index` WRITE; /*!40000 ALTER TABLE `report_compared_product_index` DISABLE KEYS */; /*!40000 ALTER TABLE `report_compared_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_event` -- DROP TABLE IF EXISTS `report_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_event` ( `event_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event ID', `logged_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Logged At', `event_type_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Event Type ID', `object_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Object ID', `subject_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Subject ID', `subtype` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Subtype', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`event_id`), KEY `REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`), KEY `REPORT_EVENT_SUBJECT_ID` (`subject_id`), KEY `REPORT_EVENT_OBJECT_ID` (`object_id`), KEY `REPORT_EVENT_SUBTYPE` (`subtype`), KEY `REPORT_EVENT_STORE_ID` (`store_id`), CONSTRAINT `REPORT_EVENT_EVENT_TYPE_ID_REPORT_EVENT_TYPES_EVENT_TYPE_ID` FOREIGN KEY (`event_type_id`) REFERENCES `report_event_types` (`event_type_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_EVENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Event Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_event` -- LOCK TABLES `report_event` WRITE; /*!40000 ALTER TABLE `report_event` DISABLE KEYS */; /*!40000 ALTER TABLE `report_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_event_types` -- DROP TABLE IF EXISTS `report_event_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_event_types` ( `event_type_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Type ID', `event_name` varchar(64) NOT NULL COMMENT 'Event Name', `customer_login` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Login', PRIMARY KEY (`event_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COMMENT='Reports Event Type Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_event_types` -- LOCK TABLES `report_event_types` WRITE; /*!40000 ALTER TABLE `report_event_types` DISABLE KEYS */; INSERT INTO `report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0); /*!40000 ALTER TABLE `report_event_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_daily` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_daily`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_viewed_product_aggregated_daily` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`), CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Daily'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_viewed_product_aggregated_daily` -- LOCK TABLES `report_viewed_product_aggregated_daily` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_monthly` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_monthly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_viewed_product_aggregated_monthly` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`), CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Monthly'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_viewed_product_aggregated_monthly` -- LOCK TABLES `report_viewed_product_aggregated_monthly` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_yearly` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_yearly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_viewed_product_aggregated_yearly` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `views_num` int NOT NULL DEFAULT '0' COMMENT 'Number of Views', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`), KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`), CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Most Viewed Products Aggregated Yearly'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_viewed_product_aggregated_yearly` -- LOCK TABLES `report_viewed_product_aggregated_yearly` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_index` -- DROP TABLE IF EXISTS `report_viewed_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_viewed_product_index` ( `index_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID', `visitor_id` int unsigned DEFAULT NULL COMMENT 'Visitor ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `added_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Added At', PRIMARY KEY (`index_id`), UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`), KEY `REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`), KEY `REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`), CONSTRAINT `REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_VIEWED_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reports Viewed Product Index Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_viewed_product_index` -- LOCK TABLES `report_viewed_product_index` WRITE; /*!40000 ALTER TABLE `report_viewed_product_index` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reporting_counts` -- DROP TABLE IF EXISTS `reporting_counts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reporting_counts` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `type` varchar(255) DEFAULT NULL COMMENT 'Item Reported', `count` int unsigned DEFAULT NULL COMMENT 'Count Value', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for all count related events generated via the cron job'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reporting_counts` -- LOCK TABLES `reporting_counts` WRITE; /*!40000 ALTER TABLE `reporting_counts` DISABLE KEYS */; /*!40000 ALTER TABLE `reporting_counts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reporting_module_status` -- DROP TABLE IF EXISTS `reporting_module_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reporting_module_status` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Module ID', `name` varchar(255) DEFAULT NULL COMMENT 'Module Name', `active` varchar(255) DEFAULT NULL COMMENT 'Module Active Status', `setup_version` varchar(255) DEFAULT NULL COMMENT 'Module Version', `state` varchar(255) DEFAULT NULL COMMENT 'Module State', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Module Status Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reporting_module_status` -- LOCK TABLES `reporting_module_status` WRITE; /*!40000 ALTER TABLE `reporting_module_status` DISABLE KEYS */; /*!40000 ALTER TABLE `reporting_module_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reporting_orders` -- DROP TABLE IF EXISTS `reporting_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reporting_orders` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `total` decimal(20,4) unsigned DEFAULT NULL, `total_base` decimal(20,4) unsigned DEFAULT NULL, `item_count` int unsigned NOT NULL COMMENT 'Line Item Count', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for all orders'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reporting_orders` -- LOCK TABLES `reporting_orders` WRITE; /*!40000 ALTER TABLE `reporting_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `reporting_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reporting_system_updates` -- DROP TABLE IF EXISTS `reporting_system_updates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reporting_system_updates` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `type` varchar(255) DEFAULT NULL COMMENT 'Update Type', `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for system updates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reporting_system_updates` -- LOCK TABLES `reporting_system_updates` WRITE; /*!40000 ALTER TABLE `reporting_system_updates` DISABLE KEYS */; /*!40000 ALTER TABLE `reporting_system_updates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reporting_users` -- DROP TABLE IF EXISTS `reporting_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reporting_users` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `type` varchar(255) DEFAULT NULL COMMENT 'User Type', `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Reporting for user actions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reporting_users` -- LOCK TABLES `reporting_users` WRITE; /*!40000 ALTER TABLE `reporting_users` DISABLE KEYS */; /*!40000 ALTER TABLE `reporting_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review` -- DROP TABLE IF EXISTS `review`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review` ( `review_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Review create date', `entity_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Entity ID', `entity_pk_value` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `status_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Status code', PRIMARY KEY (`review_id`), KEY `REVIEW_ENTITY_ID` (`entity_id`), KEY `REVIEW_STATUS_ID` (`status_id`), KEY `REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`), CONSTRAINT `REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Review base information'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review` -- LOCK TABLES `review` WRITE; /*!40000 ALTER TABLE `review` DISABLE KEYS */; /*!40000 ALTER TABLE `review` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_detail` -- DROP TABLE IF EXISTS `review_detail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_detail` ( `detail_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review detail ID', `review_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Review ID', `store_id` smallint unsigned DEFAULT '0' COMMENT 'Store ID', `title` varchar(255) NOT NULL COMMENT 'Title', `detail` text NOT NULL COMMENT 'Detail description', `nickname` varchar(128) NOT NULL COMMENT 'User nickname', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', PRIMARY KEY (`detail_id`), KEY `REVIEW_DETAIL_REVIEW_ID` (`review_id`), KEY `REVIEW_DETAIL_STORE_ID` (`store_id`), KEY `REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`), CONSTRAINT `REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL, CONSTRAINT `REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE, CONSTRAINT `REVIEW_DETAIL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Review detail information'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_detail` -- LOCK TABLES `review_detail` WRITE; /*!40000 ALTER TABLE `review_detail` DISABLE KEYS */; /*!40000 ALTER TABLE `review_detail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_entity` -- DROP TABLE IF EXISTS `review_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_entity` ( `entity_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review entity ID', `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code', PRIMARY KEY (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Review entities'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_entity` -- LOCK TABLES `review_entity` WRITE; /*!40000 ALTER TABLE `review_entity` DISABLE KEYS */; INSERT INTO `review_entity` VALUES (1,'product'),(2,'customer'),(3,'category'); /*!40000 ALTER TABLE `review_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_entity_summary` -- DROP TABLE IF EXISTS `review_entity_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_entity_summary` ( `primary_id` bigint NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity ID', `entity_pk_value` bigint NOT NULL DEFAULT '0' COMMENT 'Product ID', `entity_type` smallint NOT NULL DEFAULT '0' COMMENT 'Entity type ID', `reviews_count` smallint NOT NULL DEFAULT '0' COMMENT 'Qty of reviews', `rating_summary` smallint NOT NULL DEFAULT '0' COMMENT 'Summarized rating', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', PRIMARY KEY (`primary_id`), UNIQUE KEY `REVIEW_ENTITY_SUMMARY_ENTITY_PK_VALUE_STORE_ID_ENTITY_TYPE` (`entity_pk_value`,`store_id`,`entity_type`), KEY `REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`), CONSTRAINT `REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Review aggregates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_entity_summary` -- LOCK TABLES `review_entity_summary` WRITE; /*!40000 ALTER TABLE `review_entity_summary` DISABLE KEYS */; /*!40000 ALTER TABLE `review_entity_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_status` -- DROP TABLE IF EXISTS `review_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_status` ( `status_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Status ID', `status_code` varchar(32) NOT NULL COMMENT 'Status code', PRIMARY KEY (`status_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COMMENT='Review statuses'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_status` -- LOCK TABLES `review_status` WRITE; /*!40000 ALTER TABLE `review_status` DISABLE KEYS */; INSERT INTO `review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved'); /*!40000 ALTER TABLE `review_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_store` -- DROP TABLE IF EXISTS `review_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `review_store` ( `review_id` bigint unsigned NOT NULL COMMENT 'Review ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`review_id`,`store_id`), KEY `REVIEW_STORE_STORE_ID` (`store_id`), CONSTRAINT `REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE, CONSTRAINT `REVIEW_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Review Store'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review_store` -- LOCK TABLES `review_store` WRITE; /*!40000 ALTER TABLE `review_store` DISABLE KEYS */; /*!40000 ALTER TABLE `review_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_daily` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_daily`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_bestsellers_aggregated_daily` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`), KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`), KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`), CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Daily'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_bestsellers_aggregated_daily` -- LOCK TABLES `sales_bestsellers_aggregated_daily` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_monthly` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_monthly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_bestsellers_aggregated_monthly` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`), KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`), KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`), CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Monthly'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_bestsellers_aggregated_monthly` -- LOCK TABLES `sales_bestsellers_aggregated_monthly` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_yearly` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_yearly`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_bestsellers_aggregated_yearly` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`), KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`), KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`), CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Bestsellers Aggregated Yearly'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_bestsellers_aggregated_yearly` -- LOCK TABLES `sales_bestsellers_aggregated_yearly` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_creditmemo` -- DROP TABLE IF EXISTS `sales_creditmemo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_creditmemo` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive', `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount', `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate', `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount', `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate', `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total', `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative', `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax', `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount', `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax', `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative', `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount', `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate', `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate', `base_adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment', `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal', `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive', `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount', `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount', `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent', `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email', `creditmemo_status` int DEFAULT NULL COMMENT 'Creditmemo Status', `state` int DEFAULT NULL COMMENT 'State', `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID', `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID', `invoice_id` int DEFAULT NULL COMMENT 'Invoice ID', `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code', `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code', `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount', `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount', `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax', `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description', `customer_note` text COMMENT 'Customer Note', `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_CREDITMEMO_STORE_ID` (`store_id`), KEY `SALES_CREDITMEMO_ORDER_ID` (`order_id`), KEY `SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`), KEY `SALES_CREDITMEMO_STATE` (`state`), KEY `SALES_CREDITMEMO_CREATED_AT` (`created_at`), KEY `SALES_CREDITMEMO_UPDATED_AT` (`updated_at`), KEY `SALES_CREDITMEMO_SEND_EMAIL` (`send_email`), KEY `SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`), CONSTRAINT `SALES_CREDITMEMO_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_creditmemo` -- LOCK TABLES `sales_creditmemo` WRITE; /*!40000 ALTER TABLE `sales_creditmemo` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_creditmemo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_creditmemo_comment` -- DROP TABLE IF EXISTS `sales_creditmemo_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_creditmemo_comment` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`), KEY `SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_CREDITMEMO_COMMENT_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Comment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_creditmemo_comment` -- LOCK TABLES `sales_creditmemo_comment` WRITE; /*!40000 ALTER TABLE `sales_creditmemo_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_creditmemo_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_creditmemo_grid` -- DROP TABLE IF EXISTS `sales_creditmemo_grid`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_creditmemo_grid` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID', `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At', `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name', `state` int DEFAULT NULL COMMENT 'Status', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', `order_status` varchar(32) DEFAULT NULL COMMENT 'Order Status', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address', `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address', `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name', `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email', `customer_group_id` smallint DEFAULT NULL COMMENT 'Customer Group ID', `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method', `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount', `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive', `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative', `order_base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Order Grand Total', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`), KEY `SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`), KEY `SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `SALES_CREDITMEMO_GRID_STATE` (`state`), KEY `SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`), KEY `SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`), KEY `SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`), KEY `SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`), KEY `SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`), KEY `SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`), FULLTEXT KEY `FTI_32B7BA885941A8254EE84AE650ABDC86` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Grid'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_creditmemo_grid` -- LOCK TABLES `sales_creditmemo_grid` WRITE; /*!40000 ALTER TABLE `sales_creditmemo_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_creditmemo_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_creditmemo_item` -- DROP TABLE IF EXISTS `sales_creditmemo_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_creditmemo_item` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price', `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount', `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total', `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount', `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total', `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount', `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax', `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount', `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax', `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty', `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost', `price` decimal(20,4) DEFAULT NULL COMMENT 'Price', `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax', `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax', `product_id` int DEFAULT NULL COMMENT 'Product ID', `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `tax_ratio` text COMMENT 'Ratio of tax in the creditmemo item over tax of the order item', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt', `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`entity_id`), KEY `SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_CREDITMEMO_ITEM_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Creditmemo Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_creditmemo_item` -- LOCK TABLES `sales_creditmemo_item` WRITE; /*!40000 ALTER TABLE `sales_creditmemo_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_creditmemo_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoice` -- DROP TABLE IF EXISTS `sales_invoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoice` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount', `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount', `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount', `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate', `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount', `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount', `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate', `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total', `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount', `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax', `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax', `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate', `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount', `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty', `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal', `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount', `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID', `is_used_for_refund` smallint unsigned DEFAULT NULL COMMENT 'Is Used For Refund', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent', `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email', `can_void_flag` smallint unsigned DEFAULT NULL COMMENT 'Can Void Flag', `state` int DEFAULT NULL COMMENT 'State', `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID', `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code', `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID', `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount', `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount', `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax', `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded', `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description', `customer_note` text COMMENT 'Customer Note', `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_INVOICE_STORE_ID` (`store_id`), KEY `SALES_INVOICE_GRAND_TOTAL` (`grand_total`), KEY `SALES_INVOICE_ORDER_ID` (`order_id`), KEY `SALES_INVOICE_STATE` (`state`), KEY `SALES_INVOICE_CREATED_AT` (`created_at`), KEY `SALES_INVOICE_UPDATED_AT` (`updated_at`), KEY `SALES_INVOICE_SEND_EMAIL` (`send_email`), KEY `SALES_INVOICE_EMAIL_SENT` (`email_sent`), CONSTRAINT `SALES_INVOICE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALES_INVOICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoice` -- LOCK TABLES `sales_invoice` WRITE; /*!40000 ALTER TABLE `sales_invoice` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoice_comment` -- DROP TABLE IF EXISTS `sales_invoice_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoice_comment` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `is_customer_notified` smallint unsigned DEFAULT NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`), KEY `SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_INVOICE_COMMENT_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Comment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoice_comment` -- LOCK TABLES `sales_invoice_comment` WRITE; /*!40000 ALTER TABLE `sales_invoice_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoice_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoice_grid` -- DROP TABLE IF EXISTS `sales_invoice_grid`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoice_grid` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `state` int DEFAULT NULL COMMENT 'State', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID', `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At', `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name', `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email', `customer_group_id` int DEFAULT NULL, `payment_method` varchar(128) DEFAULT NULL COMMENT 'Payment Method', `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code', `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code', `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name', `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address', `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address', `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount', `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_INVOICE_GRID_STORE_ID` (`store_id`), KEY `SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`), KEY `SALES_INVOICE_GRID_ORDER_ID` (`order_id`), KEY `SALES_INVOICE_GRID_STATE` (`state`), KEY `SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `SALES_INVOICE_GRID_CREATED_AT` (`created_at`), KEY `SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`), KEY `SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`), KEY `SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`), FULLTEXT KEY `FTI_95D9C924DD6A8734EB8B5D01D60F90DE` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Grid'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoice_grid` -- LOCK TABLES `sales_invoice_grid` WRITE; /*!40000 ALTER TABLE `sales_invoice_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoice_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoice_item` -- DROP TABLE IF EXISTS `sales_invoice_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoice_item` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `base_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Price', `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount', `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total', `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount', `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total', `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount', `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax', `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount', `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax', `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty', `base_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Cost', `price` decimal(20,4) DEFAULT NULL COMMENT 'Price', `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax', `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax', `product_id` int DEFAULT NULL COMMENT 'Product ID', `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `tax_ratio` text COMMENT 'Ratio of tax invoiced over tax of the order item', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt', `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`entity_id`), KEY `SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_INVOICE_ITEM_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Invoice Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoice_item` -- LOCK TABLES `sales_invoice_item` WRITE; /*!40000 ALTER TABLE `sales_invoice_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoice_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoiced_aggregated` -- DROP TABLE IF EXISTS `sales_invoiced_aggregated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoiced_aggregated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `orders_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Orders Invoiced', `invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced', `invoiced_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Captured', `invoiced_not_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Not Captured', PRIMARY KEY (`id`), UNIQUE KEY `SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`), CONSTRAINT `SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Invoiced Aggregated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoiced_aggregated` -- LOCK TABLES `sales_invoiced_aggregated` WRITE; /*!40000 ALTER TABLE `sales_invoiced_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoiced_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoiced_aggregated_order` -- DROP TABLE IF EXISTS `sales_invoiced_aggregated_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_invoiced_aggregated_order` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `orders_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Orders Invoiced', `invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced', `invoiced_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Captured', `invoiced_not_captured` decimal(20,4) DEFAULT NULL COMMENT 'Invoiced Not Captured', PRIMARY KEY (`id`), UNIQUE KEY `SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`), CONSTRAINT `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Invoiced Aggregated Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_invoiced_aggregated_order` -- LOCK TABLES `sales_invoiced_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_invoiced_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoiced_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order` -- DROP TABLE IF EXISTS `sales_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `state` varchar(32) DEFAULT NULL COMMENT 'State', `status` varchar(32) DEFAULT NULL COMMENT 'Status', `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code', `protect_code` varchar(255) DEFAULT NULL COMMENT 'Protect Code', `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description', `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount', `base_discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Canceled', `base_discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Invoiced', `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount', `base_shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Canceled', `base_shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Invoiced', `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded', `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount', `base_shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Refunded', `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal', `base_subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Canceled', `base_subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Invoiced', `base_subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Refunded', `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount', `base_tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Canceled', `base_tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Invoiced', `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded', `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate', `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate', `base_total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Canceled', `base_total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced', `base_total_invoiced_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced Cost', `base_total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Offline Refunded', `base_total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Online Refunded', `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid', `base_total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Base Total Qty Ordered', `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded', `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount', `discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Canceled', `discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Invoiced', `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded', `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total', `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount', `shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Canceled', `shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Invoiced', `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded', `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount', `shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Refunded', `store_to_base_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Base Rate', `store_to_order_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Order Rate', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Canceled', `subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Invoiced', `subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Refunded', `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount', `tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Tax Canceled', `tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Tax Invoiced', `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded', `total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Total Canceled', `total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Total Invoiced', `total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Offline Refunded', `total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Online Refunded', `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid', `total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty Ordered', `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded', `can_ship_partially` smallint unsigned DEFAULT NULL COMMENT 'Can Ship Partially', `can_ship_partially_item` smallint unsigned DEFAULT NULL COMMENT 'Can Ship Partially Item', `customer_is_guest` smallint unsigned DEFAULT NULL COMMENT 'Customer Is Guest', `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify', `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID', `customer_group_id` int DEFAULT NULL, `edit_increment` int DEFAULT NULL COMMENT 'Edit Increment', `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent', `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email', `forced_shipment_with_invoice` smallint unsigned DEFAULT NULL COMMENT 'Forced Do Shipment With Invoice', `payment_auth_expiration` int DEFAULT NULL COMMENT 'Payment Authorization Expiration', `quote_address_id` int DEFAULT NULL COMMENT 'Quote Address ID', `quote_id` int DEFAULT NULL COMMENT 'Quote ID', `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID', `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative', `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive', `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative', `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive', `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount', `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax', `base_total_due` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Due', `payment_authorization_amount` decimal(20,4) DEFAULT NULL COMMENT 'Payment Authorization Amount', `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount', `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax', `total_due` decimal(20,4) DEFAULT NULL COMMENT 'Total Due', `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight', `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `applied_rule_ids` varchar(128) DEFAULT NULL COMMENT 'Applied Rule Ids', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email', `customer_firstname` varchar(128) DEFAULT NULL COMMENT 'Customer Firstname', `customer_lastname` varchar(128) DEFAULT NULL COMMENT 'Customer Lastname', `customer_middlename` varchar(128) DEFAULT NULL COMMENT 'Customer Middlename', `customer_prefix` varchar(32) DEFAULT NULL COMMENT 'Customer Prefix', `customer_suffix` varchar(32) DEFAULT NULL COMMENT 'Customer Suffix', `customer_taxvat` varchar(32) DEFAULT NULL COMMENT 'Customer Taxvat', `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description', `ext_customer_id` varchar(32) DEFAULT NULL COMMENT 'Ext Customer ID', `ext_order_id` varchar(32) DEFAULT NULL COMMENT 'Ext Order ID', `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code', `hold_before_state` varchar(32) DEFAULT NULL COMMENT 'Hold Before State', `hold_before_status` varchar(32) DEFAULT NULL COMMENT 'Hold Before Status', `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code', `original_increment_id` varchar(50) DEFAULT NULL COMMENT 'Original Increment ID', `relation_child_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child ID', `relation_child_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Real ID', `relation_parent_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent ID', `relation_parent_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Real ID', `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip', `shipping_method` varchar(120) DEFAULT NULL, `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code', `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name', `x_forwarded_for` varchar(255) DEFAULT NULL COMMENT 'X Forwarded For', `customer_note` text COMMENT 'Customer Note', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `total_item_count` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Total Item Count', `customer_gender` int DEFAULT NULL COMMENT 'Customer Gender', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount', `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount', `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced', `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced', `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded', `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded', `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax', `coupon_rule_name` varchar(255) DEFAULT NULL COMMENT 'Coupon Sales Rule Name', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `paypal_ipn_customer_notified` int DEFAULT '0' COMMENT 'Paypal Ipn Customer Notified', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_ORDER_STATUS` (`status`), KEY `SALES_ORDER_STATE` (`state`), KEY `SALES_ORDER_STORE_ID` (`store_id`), KEY `SALES_ORDER_CREATED_AT` (`created_at`), KEY `SALES_ORDER_CUSTOMER_ID` (`customer_id`), KEY `SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`), KEY `SALES_ORDER_QUOTE_ID` (`quote_id`), KEY `SALES_ORDER_UPDATED_AT` (`updated_at`), KEY `SALES_ORDER_SEND_EMAIL` (`send_email`), KEY `SALES_ORDER_EMAIL_SENT` (`email_sent`), KEY `SALES_ORDER_STORE_ID_STATE_CREATED_AT` (`store_id`,`state`,`created_at`), CONSTRAINT `SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL, CONSTRAINT `SALES_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order` -- LOCK TABLES `sales_order` WRITE; /*!40000 ALTER TABLE `sales_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_address` -- DROP TABLE IF EXISTS `sales_order_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_address` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID', `customer_address_id` int DEFAULT NULL COMMENT 'Customer Address ID', `quote_address_id` int DEFAULT NULL COMMENT 'Quote Address ID', `region_id` int DEFAULT NULL COMMENT 'Region ID', `customer_id` int DEFAULT NULL COMMENT 'Customer ID', `fax` varchar(255) DEFAULT NULL COMMENT 'Fax', `region` varchar(255) DEFAULT NULL COMMENT 'Region', `postcode` varchar(255) DEFAULT NULL COMMENT 'Postcode', `lastname` varchar(255) DEFAULT NULL COMMENT 'Lastname', `street` varchar(255) DEFAULT NULL COMMENT 'Street', `city` varchar(255) DEFAULT NULL COMMENT 'City', `email` varchar(255) DEFAULT NULL COMMENT 'Email', `telephone` varchar(255) DEFAULT NULL COMMENT 'Phone Number', `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID', `firstname` varchar(255) DEFAULT NULL COMMENT 'Firstname', `address_type` varchar(255) DEFAULT NULL COMMENT 'Address Type', `prefix` varchar(255) DEFAULT NULL COMMENT 'Prefix', `middlename` varchar(255) DEFAULT NULL COMMENT 'Middlename', `suffix` varchar(255) DEFAULT NULL COMMENT 'Suffix', `company` varchar(255) DEFAULT NULL COMMENT 'Company', `vat_id` text COMMENT 'Vat ID', `vat_is_valid` smallint DEFAULT NULL COMMENT 'Vat Is Valid', `vat_request_id` text COMMENT 'Vat Request ID', `vat_request_date` text COMMENT 'Vat Request Date', `vat_request_success` smallint DEFAULT NULL COMMENT 'Vat Request Success', PRIMARY KEY (`entity_id`), KEY `SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_ORDER_ADDRESS_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Address'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_address` -- LOCK TABLES `sales_order_address` WRITE; /*!40000 ALTER TABLE `sales_order_address` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_aggregated_created` -- DROP TABLE IF EXISTS `sales_order_aggregated_created`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_aggregated_created` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered', `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced', `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount', `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount', `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount', `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount', `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount', `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount', `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount', `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount', `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual', `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount', `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual', `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount', `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual', PRIMARY KEY (`id`), UNIQUE KEY `SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`), CONSTRAINT `SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Aggregated Created'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_aggregated_created` -- LOCK TABLES `sales_order_aggregated_created` WRITE; /*!40000 ALTER TABLE `sales_order_aggregated_created` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_aggregated_created` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_aggregated_updated` -- DROP TABLE IF EXISTS `sales_order_aggregated_updated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_aggregated_updated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Ordered', `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Qty Invoiced', `total_income_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Income Amount', `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Revenue Amount', `total_profit_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Profit Amount', `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Invoiced Amount', `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Canceled Amount', `total_paid_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Paid Amount', `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Refunded Amount', `total_tax_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount', `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Tax Amount Actual', `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount', `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Shipping Amount Actual', `total_discount_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount', `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Discount Amount Actual', PRIMARY KEY (`id`), UNIQUE KEY `SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`), CONSTRAINT `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Aggregated Updated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_aggregated_updated` -- LOCK TABLES `sales_order_aggregated_updated` WRITE; /*!40000 ALTER TABLE `sales_order_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_grid` -- DROP TABLE IF EXISTS `sales_order_grid`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_grid` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `status` varchar(32) DEFAULT NULL COMMENT 'Status', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total', `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid', `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total', `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', `order_currency_code` varchar(255) DEFAULT NULL COMMENT 'Order Currency Code', `shipping_name` varchar(255) DEFAULT NULL COMMENT 'Shipping Name', `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address', `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address', `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name', `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email', `customer_group` varchar(255) DEFAULT NULL COMMENT 'Customer Group', `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal', `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount', `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name', `payment_method` varchar(255) DEFAULT NULL COMMENT 'Payment Method', `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_ORDER_GRID_STATUS` (`status`), KEY `SALES_ORDER_GRID_STORE_ID` (`store_id`), KEY `SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`), KEY `SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`), KEY `SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`), KEY `SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`), KEY `SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`), KEY `SALES_ORDER_GRID_BILLING_NAME` (`billing_name`), KEY `SALES_ORDER_GRID_CREATED_AT` (`created_at`), KEY `SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`), KEY `SALES_ORDER_GRID_UPDATED_AT` (`updated_at`), FULLTEXT KEY `FTI_65B9E9925EC58F0C7C2E2F6379C233E7` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Grid'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_grid` -- LOCK TABLES `sales_order_grid` WRITE; /*!40000 ALTER TABLE `sales_order_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_item` -- DROP TABLE IF EXISTS `sales_order_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_item` ( `item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID', `order_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order ID', `parent_item_id` int unsigned DEFAULT NULL COMMENT 'Parent Item ID', `quote_item_id` int unsigned DEFAULT NULL COMMENT 'Quote Item ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `product_id` int unsigned DEFAULT NULL COMMENT 'Product ID', `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type', `product_options` longtext COMMENT 'Product Options', `weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Weight', `is_virtual` smallint unsigned DEFAULT NULL COMMENT 'Is Virtual', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `description` text COMMENT 'Description', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `is_qty_decimal` smallint unsigned DEFAULT NULL COMMENT 'Is Qty Decimal', `no_discount` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'No Discount', `qty_backordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Backordered', `qty_canceled` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Canceled', `qty_invoiced` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Invoiced', `qty_ordered` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Ordered', `qty_refunded` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Refunded', `qty_shipped` decimal(12,4) DEFAULT '0.0000' COMMENT 'Qty Shipped', `base_cost` decimal(12,4) DEFAULT '0.0000' COMMENT 'Base Cost', `price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price', `base_price` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Price', `original_price` decimal(20,4) DEFAULT NULL COMMENT 'Original Price', `base_original_price` decimal(20,4) DEFAULT NULL COMMENT 'Base Original Price', `tax_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Tax Percent', `tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Amount', `tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Tax Invoiced', `base_tax_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Tax Invoiced', `discount_percent` decimal(12,4) DEFAULT '0.0000' COMMENT 'Discount Percent', `discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Amount', `discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Discount Invoiced', `base_discount_invoiced` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Discount Invoiced', `amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Amount Refunded', `base_amount_refunded` decimal(20,4) DEFAULT '0.0000' COMMENT 'Base Amount Refunded', `row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Total', `base_row_total` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Total', `row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Row Invoiced', `base_row_invoiced` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Row Invoiced', `row_weight` decimal(12,4) DEFAULT '0.0000' COMMENT 'Row Weight', `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount', `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount', `ext_order_item_id` varchar(255) DEFAULT NULL COMMENT 'Ext Order Item ID', `locked_do_invoice` smallint unsigned DEFAULT NULL COMMENT 'Locked Do Invoice', `locked_do_ship` smallint unsigned DEFAULT NULL COMMENT 'Locked Do Ship', `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax', `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount', `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount', `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced', `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced', `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded', `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded', `tax_canceled` decimal(12,4) DEFAULT NULL COMMENT 'Tax Canceled', `discount_tax_compensation_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Canceled', `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded', `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded', `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded', `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded', `gift_message_id` int DEFAULT NULL COMMENT 'Gift Message ID', `gift_message_available` int DEFAULT NULL COMMENT 'Gift Message Available', `free_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Free Shipping', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt', `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`item_id`), KEY `SALES_ORDER_ITEM_ORDER_ID` (`order_id`), KEY `SALES_ORDER_ITEM_STORE_ID` (`store_id`), CONSTRAINT `SALES_ORDER_ITEM_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_item` -- LOCK TABLES `sales_order_item` WRITE; /*!40000 ALTER TABLE `sales_order_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_payment` -- DROP TABLE IF EXISTS `sales_order_payment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_payment` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `base_shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Captured', `shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Captured', `amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Amount Refunded', `base_amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid', `amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Amount Canceled', `base_amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Authorized', `base_amount_paid_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid Online', `base_amount_refunded_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded Online', `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount', `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount', `amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Amount Paid', `amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Amount Authorized', `base_amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Ordered', `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded', `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded', `base_amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded', `amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Amount Ordered', `base_amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Canceled', `quote_payment_id` int DEFAULT NULL COMMENT 'Quote Payment ID', `additional_data` text COMMENT 'Additional Data', `cc_exp_month` varchar(12) DEFAULT NULL COMMENT 'Cc Exp Month', `cc_ss_start_year` varchar(12) DEFAULT NULL COMMENT 'Cc Ss Start Year', `echeck_bank_name` varchar(128) DEFAULT NULL COMMENT 'Echeck Bank Name', `method` varchar(128) DEFAULT NULL COMMENT 'Method', `cc_debug_request_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Request Body', `cc_secure_verify` varchar(32) DEFAULT NULL COMMENT 'Cc Secure Verify', `protection_eligibility` varchar(32) DEFAULT NULL COMMENT 'Protection Eligibility', `cc_approval` varchar(32) DEFAULT NULL COMMENT 'Cc Approval', `cc_last_4` varchar(100) DEFAULT NULL COMMENT 'Cc Last 4', `cc_status_description` varchar(32) DEFAULT NULL COMMENT 'Cc Status Description', `echeck_type` varchar(32) DEFAULT NULL COMMENT 'Echeck Type', `cc_debug_response_serialized` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Serialized', `cc_ss_start_month` varchar(128) DEFAULT NULL COMMENT 'Cc Ss Start Month', `echeck_account_type` varchar(255) DEFAULT NULL COMMENT 'Echeck Account Type', `last_trans_id` varchar(255) DEFAULT NULL COMMENT 'Last Trans ID', `cc_cid_status` varchar(32) DEFAULT NULL COMMENT 'Cc Cid Status', `cc_owner` varchar(128) DEFAULT NULL COMMENT 'Cc Owner', `cc_type` varchar(32) DEFAULT NULL COMMENT 'Cc Type', `po_number` varchar(32) DEFAULT NULL COMMENT 'Po Number', `cc_exp_year` varchar(4) DEFAULT NULL COMMENT 'Cc Exp Year', `cc_status` varchar(4) DEFAULT NULL COMMENT 'Cc Status', `echeck_routing_number` varchar(32) DEFAULT NULL COMMENT 'Echeck Routing Number', `account_status` varchar(32) DEFAULT NULL COMMENT 'Account Status', `anet_trans_method` varchar(32) DEFAULT NULL COMMENT 'Anet Trans Method', `cc_debug_response_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Body', `cc_ss_issue` varchar(32) DEFAULT NULL COMMENT 'Cc Ss Issue', `echeck_account_name` varchar(32) DEFAULT NULL COMMENT 'Echeck Account Name', `cc_avs_status` varchar(32) DEFAULT NULL COMMENT 'Cc Avs Status', `cc_number_enc` varchar(128) DEFAULT NULL, `cc_trans_id` varchar(32) DEFAULT NULL COMMENT 'Cc Trans ID', `address_status` varchar(32) DEFAULT NULL COMMENT 'Address Status', `additional_information` text COMMENT 'Additional Information', PRIMARY KEY (`entity_id`), KEY `SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_ORDER_PAYMENT_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Payment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_payment` -- LOCK TABLES `sales_order_payment` WRITE; /*!40000 ALTER TABLE `sales_order_payment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_payment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status` -- DROP TABLE IF EXISTS `sales_order_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_status` ( `status` varchar(32) NOT NULL COMMENT 'Status', `label` varchar(128) NOT NULL COMMENT 'Label', PRIMARY KEY (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_status` -- LOCK TABLES `sales_order_status` WRITE; /*!40000 ALTER TABLE `sales_order_status` DISABLE KEYS */; INSERT INTO `sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing'); /*!40000 ALTER TABLE `sales_order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status_history` -- DROP TABLE IF EXISTS `sales_order_status_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_status_history` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `status` varchar(32) DEFAULT NULL COMMENT 'Status', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `entity_name` varchar(32) DEFAULT NULL COMMENT 'Shows what entity history is bind to.', PRIMARY KEY (`entity_id`), KEY `SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`), KEY `SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`), CONSTRAINT `SALES_ORDER_STATUS_HISTORY_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Order Status History'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_status_history` -- LOCK TABLES `sales_order_status_history` WRITE; /*!40000 ALTER TABLE `sales_order_status_history` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_status_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status_label` -- DROP TABLE IF EXISTS `sales_order_status_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_status_label` ( `status` varchar(32) NOT NULL COMMENT 'Status', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `label` varchar(128) NOT NULL COMMENT 'Label', PRIMARY KEY (`status`,`store_id`), KEY `SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`), CONSTRAINT `SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE, CONSTRAINT `SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Label Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_status_label` -- LOCK TABLES `sales_order_status_label` WRITE; /*!40000 ALTER TABLE `sales_order_status_label` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_status_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status_state` -- DROP TABLE IF EXISTS `sales_order_status_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_status_state` ( `status` varchar(32) NOT NULL COMMENT 'Status', `state` varchar(32) NOT NULL COMMENT 'Label', `is_default` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Default', `visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Visible on front', PRIMARY KEY (`status`,`state`), CONSTRAINT `SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Status Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_status_state` -- LOCK TABLES `sales_order_status_state` WRITE; /*!40000 ALTER TABLE `sales_order_status_state` DISABLE KEYS */; INSERT INTO `sales_order_status_state` VALUES ('canceled','canceled',1,1),('closed','closed',1,1),('complete','complete',1,1),('fraud','payment_review',0,1),('fraud','processing',0,1),('holded','holded',1,1),('payment_review','payment_review',1,1),('pending','new',1,1),('pending_payment','pending_payment',1,0),('processing','processing',1,1); /*!40000 ALTER TABLE `sales_order_status_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_tax` -- DROP TABLE IF EXISTS `sales_order_tax`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_tax` ( `tax_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax ID', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `code` varchar(255) DEFAULT NULL COMMENT 'Code', `title` varchar(255) DEFAULT NULL COMMENT 'Title', `percent` decimal(12,4) DEFAULT NULL COMMENT 'Percent', `amount` decimal(20,4) DEFAULT NULL COMMENT 'Amount', `priority` int NOT NULL COMMENT 'Priority', `position` int NOT NULL COMMENT 'Position', `base_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount', `process` smallint NOT NULL COMMENT 'Process', `base_real_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Real Amount', PRIMARY KEY (`tax_id`), KEY `SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Tax Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_tax` -- LOCK TABLES `sales_order_tax` WRITE; /*!40000 ALTER TABLE `sales_order_tax` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_tax` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_tax_item` -- DROP TABLE IF EXISTS `sales_order_tax_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order_tax_item` ( `tax_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Item ID', `tax_id` int unsigned NOT NULL COMMENT 'Tax ID', `item_id` int unsigned DEFAULT NULL COMMENT 'Item ID', `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item', `amount` decimal(20,4) NOT NULL COMMENT 'Tax amount for the item and tax rate', `base_amount` decimal(20,4) NOT NULL COMMENT 'Base tax amount for the item and tax rate', `real_amount` decimal(20,4) NOT NULL COMMENT 'Real tax amount for the item and tax rate', `real_base_amount` decimal(20,4) NOT NULL COMMENT 'Real base tax amount for the item and tax rate', `associated_item_id` int unsigned DEFAULT NULL COMMENT 'Id of the associated item', `taxable_item_type` varchar(32) NOT NULL COMMENT 'Type of the taxable item', PRIMARY KEY (`tax_item_id`), UNIQUE KEY `SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`), KEY `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` (`associated_item_id`), KEY `SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`), CONSTRAINT `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`associated_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE, CONSTRAINT `SALES_ORDER_TAX_ITEM_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE, CONSTRAINT `SALES_ORDER_TAX_ITEM_TAX_ID_SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `sales_order_tax` (`tax_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Order Tax Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order_tax_item` -- LOCK TABLES `sales_order_tax_item` WRITE; /*!40000 ALTER TABLE `sales_order_tax_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_tax_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_payment_transaction` -- DROP TABLE IF EXISTS `sales_payment_transaction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_payment_transaction` ( `transaction_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Transaction ID', `parent_id` int unsigned DEFAULT NULL COMMENT 'Parent ID', `order_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Order ID', `payment_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Payment ID', `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID', `parent_txn_id` varchar(100) DEFAULT NULL COMMENT 'Parent Txn ID', `txn_type` varchar(15) DEFAULT NULL COMMENT 'Txn Type', `is_closed` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Closed', `additional_information` blob COMMENT 'Additional Information', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', PRIMARY KEY (`transaction_id`), UNIQUE KEY `SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`), KEY `SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`), KEY `SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`), CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE, CONSTRAINT `SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALES_PAYMENT_TRANSACTION_PAYMENT_ID_SALES_ORDER_PAYMENT_ENTT_ID` FOREIGN KEY (`payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Payment Transaction'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_payment_transaction` -- LOCK TABLES `sales_payment_transaction` WRITE; /*!40000 ALTER TABLE `sales_payment_transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_payment_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_refunded_aggregated` -- DROP TABLE IF EXISTS `sales_refunded_aggregated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_refunded_aggregated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded', `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded', `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded', PRIMARY KEY (`id`), UNIQUE KEY `SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`), CONSTRAINT `SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Refunded Aggregated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_refunded_aggregated` -- LOCK TABLES `sales_refunded_aggregated` WRITE; /*!40000 ALTER TABLE `sales_refunded_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_refunded_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_refunded_aggregated_order` -- DROP TABLE IF EXISTS `sales_refunded_aggregated_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_refunded_aggregated_order` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded', `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded', `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded', PRIMARY KEY (`id`), UNIQUE KEY `SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`), CONSTRAINT `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Refunded Aggregated Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_refunded_aggregated_order` -- LOCK TABLES `sales_refunded_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_refunded_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_refunded_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_sequence_meta` -- DROP TABLE IF EXISTS `sales_sequence_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_sequence_meta` ( `meta_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `entity_type` varchar(32) NOT NULL COMMENT 'Prefix', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `sequence_table` varchar(64) NOT NULL COMMENT 'table for sequence', PRIMARY KEY (`meta_id`), UNIQUE KEY `SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='sales_sequence_meta'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_sequence_meta` -- LOCK TABLES `sales_sequence_meta` WRITE; /*!40000 ALTER TABLE `sales_sequence_meta` DISABLE KEYS */; INSERT INTO `sales_sequence_meta` VALUES (1,'order',0,'sequence_order_0'),(2,'invoice',0,'sequence_invoice_0'),(3,'creditmemo',0,'sequence_creditmemo_0'),(4,'shipment',0,'sequence_shipment_0'),(5,'order',1,'sequence_order_1'),(6,'invoice',1,'sequence_invoice_1'),(7,'creditmemo',1,'sequence_creditmemo_1'),(8,'shipment',1,'sequence_shipment_1'); /*!40000 ALTER TABLE `sales_sequence_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_sequence_profile` -- DROP TABLE IF EXISTS `sales_sequence_profile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_sequence_profile` ( `profile_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `meta_id` int unsigned NOT NULL COMMENT 'Meta_id', `prefix` varchar(32) DEFAULT NULL COMMENT 'Prefix', `suffix` varchar(32) DEFAULT NULL COMMENT 'Suffix', `start_value` int unsigned NOT NULL DEFAULT '1' COMMENT 'Start value for sequence', `step` int unsigned NOT NULL DEFAULT '1' COMMENT 'Step for sequence', `max_value` int unsigned NOT NULL COMMENT 'MaxValue for sequence', `warning_value` int unsigned NOT NULL COMMENT 'WarningValue for sequence', `is_active` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'isActive flag', PRIMARY KEY (`profile_id`), UNIQUE KEY `SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`), CONSTRAINT `SALES_SEQUENCE_PROFILE_META_ID_SALES_SEQUENCE_META_META_ID` FOREIGN KEY (`meta_id`) REFERENCES `sales_sequence_meta` (`meta_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COMMENT='sales_sequence_profile'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_sequence_profile` -- LOCK TABLES `sales_sequence_profile` WRITE; /*!40000 ALTER TABLE `sales_sequence_profile` DISABLE KEYS */; INSERT INTO `sales_sequence_profile` VALUES (1,1,NULL,NULL,1,1,4294967295,4294966295,1),(2,2,NULL,NULL,1,1,4294967295,4294966295,1),(3,3,NULL,NULL,1,1,4294967295,4294966295,1),(4,4,NULL,NULL,1,1,4294967295,4294966295,1),(5,5,NULL,NULL,1,1,4294967295,4294966295,1),(6,6,NULL,NULL,1,1,4294967295,4294966295,1),(7,7,NULL,NULL,1,1,4294967295,4294966295,1),(8,8,NULL,NULL,1,1,4294967295,4294966295,1); /*!40000 ALTER TABLE `sales_sequence_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipment` -- DROP TABLE IF EXISTS `sales_shipment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipment` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight', `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty', `email_sent` smallint unsigned DEFAULT NULL COMMENT 'Email Sent', `send_email` smallint unsigned DEFAULT NULL COMMENT 'Send Email', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `customer_id` int DEFAULT NULL COMMENT 'Customer ID', `shipping_address_id` int DEFAULT NULL COMMENT 'Shipping Address ID', `billing_address_id` int DEFAULT NULL COMMENT 'Billing Address ID', `shipment_status` int DEFAULT NULL COMMENT 'Shipment Status', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', `packages` text COMMENT 'Packed Products in Packages', `shipping_label` mediumblob COMMENT 'Shipping Label Content', `customer_note` text COMMENT 'Customer Note', `customer_note_notify` smallint unsigned DEFAULT NULL COMMENT 'Customer Note Notify', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_SHIPMENT_STORE_ID` (`store_id`), KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`), KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`), KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`), KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`), KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`), KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`), CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipment` -- LOCK TABLES `sales_shipment` WRITE; /*!40000 ALTER TABLE `sales_shipment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipment_comment` -- DROP TABLE IF EXISTS `sales_shipment_comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipment_comment` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `is_customer_notified` int DEFAULT NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`), KEY `SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_SHIPMENT_COMMENT_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Comment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipment_comment` -- LOCK TABLES `sales_shipment_comment` WRITE; /*!40000 ALTER TABLE `sales_shipment_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipment_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipment_grid` -- DROP TABLE IF EXISTS `sales_shipment_grid`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipment_grid` ( `entity_id` int unsigned NOT NULL COMMENT 'Entity ID', `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_increment_id` varchar(32) NOT NULL COMMENT 'Order Increment ID', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `order_created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Order Increment ID', `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name', `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty', `shipment_status` int DEFAULT NULL COMMENT 'Shipment Status', `order_status` varchar(32) DEFAULT NULL COMMENT 'Order', `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address', `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address', `billing_name` varchar(128) DEFAULT NULL COMMENT 'Billing Name', `shipping_name` varchar(128) DEFAULT NULL COMMENT 'Shipping Name', `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email', `customer_group_id` int DEFAULT NULL, `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method', `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', PRIMARY KEY (`entity_id`), UNIQUE KEY `SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`), KEY `SALES_SHIPMENT_GRID_STORE_ID` (`store_id`), KEY `SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`), KEY `SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`), KEY `SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`), KEY `SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`), KEY `SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`), KEY `SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`), KEY `SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`), KEY `SALES_SHIPMENT_GRID_ORDER_ID` (`order_id`), FULLTEXT KEY `FTI_086B40C8955F167B8EA76653437879B4` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Grid'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipment_grid` -- LOCK TABLES `sales_shipment_grid` WRITE; /*!40000 ALTER TABLE `sales_shipment_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipment_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipment_item` -- DROP TABLE IF EXISTS `sales_shipment_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipment_item` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total', `price` decimal(20,4) DEFAULT NULL COMMENT 'Price', `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight', `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty', `product_id` int DEFAULT NULL COMMENT 'Product ID', `order_item_id` int DEFAULT NULL COMMENT 'Order Item ID', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `sku` varchar(255) DEFAULT NULL COMMENT 'Sku', PRIMARY KEY (`entity_id`), KEY `SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`), CONSTRAINT `SALES_SHIPMENT_ITEM_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Item'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipment_item` -- LOCK TABLES `sales_shipment_item` WRITE; /*!40000 ALTER TABLE `sales_shipment_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipment_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipment_track` -- DROP TABLE IF EXISTS `sales_shipment_track`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipment_track` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `parent_id` int unsigned NOT NULL COMMENT 'Parent ID', `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight', `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty', `order_id` int unsigned NOT NULL COMMENT 'Order ID', `track_number` text COMMENT 'Number', `description` text COMMENT 'Description', `title` varchar(255) DEFAULT NULL COMMENT 'Title', `carrier_code` varchar(32) DEFAULT NULL COMMENT 'Carrier Code', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated At', PRIMARY KEY (`entity_id`), KEY `SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`), KEY `SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`), KEY `SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`), CONSTRAINT `SALES_SHIPMENT_TRACK_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Flat Shipment Track'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipment_track` -- LOCK TABLES `sales_shipment_track` WRITE; /*!40000 ALTER TABLE `sales_shipment_track` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipment_track` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipping_aggregated` -- DROP TABLE IF EXISTS `sales_shipping_aggregated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipping_aggregated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping', `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual', PRIMARY KEY (`id`), UNIQUE KEY `SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`), KEY `SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`), CONSTRAINT `SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Shipping Aggregated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipping_aggregated` -- LOCK TABLES `sales_shipping_aggregated` WRITE; /*!40000 ALTER TABLE `sales_shipping_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipping_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipping_aggregated_order` -- DROP TABLE IF EXISTS `sales_shipping_aggregated_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_shipping_aggregated_order` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description', `orders_count` int NOT NULL DEFAULT '0' COMMENT 'Orders Count', `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping', `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`), KEY `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`), CONSTRAINT `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Shipping Aggregated Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_shipping_aggregated_order` -- LOCK TABLES `sales_shipping_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_shipping_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipping_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule` -- DROP TABLE IF EXISTS `salesrule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule` ( `rule_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `name` varchar(255) DEFAULT NULL COMMENT 'Name', `description` text COMMENT 'Description', `from_date` date DEFAULT NULL COMMENT 'From', `to_date` date DEFAULT NULL COMMENT 'To', `uses_per_customer` int NOT NULL DEFAULT '0' COMMENT 'Uses Per Customer', `is_active` smallint NOT NULL DEFAULT '0' COMMENT 'Is Active', `conditions_serialized` mediumtext COMMENT 'Conditions Serialized', `actions_serialized` mediumtext COMMENT 'Actions Serialized', `stop_rules_processing` smallint NOT NULL DEFAULT '1' COMMENT 'Stop Rules Processing', `is_advanced` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Is Advanced', `product_ids` text COMMENT 'Product Ids', `sort_order` int unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action', `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount', `discount_qty` decimal(12,4) DEFAULT NULL COMMENT 'Discount Qty', `discount_step` int unsigned NOT NULL DEFAULT '0' COMMENT 'Discount Step', `apply_to_shipping` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Apply To Shipping', `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used', `is_rss` smallint NOT NULL DEFAULT '0' COMMENT 'Is Rss', `coupon_type` smallint unsigned NOT NULL DEFAULT '1' COMMENT 'Coupon Type', `use_auto_generation` smallint NOT NULL DEFAULT '0' COMMENT 'Use Auto Generation', `uses_per_coupon` int NOT NULL DEFAULT '0' COMMENT 'User Per Coupon', `simple_free_shipping` smallint unsigned DEFAULT NULL COMMENT 'Simple Free Shipping', PRIMARY KEY (`rule_id`), KEY `SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule` -- LOCK TABLES `salesrule` WRITE; /*!40000 ALTER TABLE `salesrule` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon` -- DROP TABLE IF EXISTS `salesrule_coupon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_coupon` ( `coupon_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Coupon ID', `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `code` varchar(255) DEFAULT NULL COMMENT 'Code', `usage_limit` int unsigned DEFAULT NULL COMMENT 'Usage Limit', `usage_per_customer` int unsigned DEFAULT NULL COMMENT 'Usage Per Customer', `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used', `expiration_date` datetime DEFAULT NULL COMMENT 'Expiration Date', `is_primary` smallint unsigned DEFAULT NULL COMMENT 'Is Primary', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon Code Creation Date', `type` smallint DEFAULT '0' COMMENT 'Coupon Code Type', PRIMARY KEY (`coupon_id`), UNIQUE KEY `SALESRULE_COUPON_CODE` (`code`), UNIQUE KEY `SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`), KEY `SALESRULE_COUPON_RULE_ID` (`rule_id`), CONSTRAINT `SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_coupon` -- LOCK TABLES `salesrule_coupon` WRITE; /*!40000 ALTER TABLE `salesrule_coupon` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon_aggregated` -- DROP TABLE IF EXISTS `salesrule_coupon_aggregated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_coupon_aggregated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date NOT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code', `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount', `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual', `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual', `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual', `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `SALESRULE_COUPON_AGGRED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`), KEY `SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`), CONSTRAINT `SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Coupon Aggregated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_coupon_aggregated` -- LOCK TABLES `salesrule_coupon_aggregated` WRITE; /*!40000 ALTER TABLE `salesrule_coupon_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon_aggregated_order` -- DROP TABLE IF EXISTS `salesrule_coupon_aggregated_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_coupon_aggregated_order` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date NOT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code', `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount', `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_1094D1FBBCBB11704A29DEF3ACC37D2B` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`), KEY `SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`), CONSTRAINT `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Coupon Aggregated Order'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_coupon_aggregated_order` -- LOCK TABLES `salesrule_coupon_aggregated_order` WRITE; /*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon_aggregated_updated` -- DROP TABLE IF EXISTS `salesrule_coupon_aggregated_updated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_coupon_aggregated_updated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date NOT NULL COMMENT 'Period', `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID', `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status', `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code', `coupon_uses` int NOT NULL DEFAULT '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount', `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Subtotal Amount Actual', `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Discount Amount Actual', `total_amount_actual` decimal(20,4) NOT NULL DEFAULT '0.0000' COMMENT 'Total Amount Actual', `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_7196FA120A4F0F84E1B66605E87E213E` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`), KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`), CONSTRAINT `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon Aggregated Updated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_coupon_aggregated_updated` -- LOCK TABLES `salesrule_coupon_aggregated_updated` WRITE; /*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon_usage` -- DROP TABLE IF EXISTS `salesrule_coupon_usage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_coupon_usage` ( `coupon_id` int unsigned NOT NULL COMMENT 'Coupon ID', `customer_id` int unsigned NOT NULL COMMENT 'Customer ID', `times_used` int unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used', PRIMARY KEY (`coupon_id`,`customer_id`), KEY `SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`), CONSTRAINT `SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Coupon Usage'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_coupon_usage` -- LOCK TABLES `salesrule_coupon_usage` WRITE; /*!40000 ALTER TABLE `salesrule_coupon_usage` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon_usage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_customer` -- DROP TABLE IF EXISTS `salesrule_customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_customer` ( `rule_customer_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer ID', `rule_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Rule ID', `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `times_used` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Times Used', PRIMARY KEY (`rule_customer_id`), KEY `SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`), KEY `SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`), CONSTRAINT `SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Customer'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_customer` -- LOCK TABLES `salesrule_customer` WRITE; /*!40000 ALTER TABLE `salesrule_customer` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_customer_group` -- DROP TABLE IF EXISTS `salesrule_customer_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_customer_group` ( `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', PRIMARY KEY (`rule_id`,`customer_group_id`), KEY `SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`), CONSTRAINT `SALESRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_CUSTOMER_GROUP_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Rules To Customer Groups Relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_customer_group` -- LOCK TABLES `salesrule_customer_group` WRITE; /*!40000 ALTER TABLE `salesrule_customer_group` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_label` -- DROP TABLE IF EXISTS `salesrule_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_label` ( `label_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Label ID', `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `label` varchar(255) DEFAULT NULL COMMENT 'Label', PRIMARY KEY (`label_id`), UNIQUE KEY `SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`), KEY `SALESRULE_LABEL_STORE_ID` (`store_id`), CONSTRAINT `SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Label'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_label` -- LOCK TABLES `salesrule_label` WRITE; /*!40000 ALTER TABLE `salesrule_label` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_product_attribute` -- DROP TABLE IF EXISTS `salesrule_product_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_product_attribute` ( `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', `customer_group_id` int unsigned NOT NULL COMMENT 'Customer Group ID', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`), KEY `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`), KEY `SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Salesrule Product Attribute'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_product_attribute` -- LOCK TABLES `salesrule_product_attribute` WRITE; /*!40000 ALTER TABLE `salesrule_product_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_product_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_website` -- DROP TABLE IF EXISTS `salesrule_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `salesrule_website` ( `rule_id` int unsigned NOT NULL COMMENT 'Rule ID', `website_id` smallint unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`rule_id`,`website_id`), KEY `SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`), CONSTRAINT `SALESRULE_WEBSITE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE, CONSTRAINT `SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Sales Rules To Websites Relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesrule_website` -- LOCK TABLES `salesrule_website` WRITE; /*!40000 ALTER TABLE `salesrule_website` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `search_query` -- DROP TABLE IF EXISTS `search_query`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `search_query` ( `query_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Query ID', `query_text` varchar(255) DEFAULT NULL COMMENT 'Query text', `num_results` int unsigned NOT NULL DEFAULT '0' COMMENT 'Num results', `popularity` int unsigned NOT NULL DEFAULT '0' COMMENT 'Popularity', `redirect` varchar(255) DEFAULT NULL COMMENT 'Redirect', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', `display_in_terms` smallint NOT NULL DEFAULT '1' COMMENT 'Display in terms', `is_active` smallint DEFAULT '1' COMMENT 'Active status', `is_processed` smallint DEFAULT '0' COMMENT 'Processed status', `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated at', PRIMARY KEY (`query_id`), UNIQUE KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`), KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`), KEY `SEARCH_QUERY_IS_PROCESSED` (`is_processed`), KEY `SEARCH_QUERY_STORE_ID_NUM_RESULTS_POPULARITY` (`store_id`,`num_results`,`popularity`), CONSTRAINT `SEARCH_QUERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Search query table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `search_query` -- LOCK TABLES `search_query` WRITE; /*!40000 ALTER TABLE `search_query` DISABLE KEYS */; /*!40000 ALTER TABLE `search_query` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `search_synonyms` -- DROP TABLE IF EXISTS `search_synonyms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `search_synonyms` ( `group_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group ID', `synonyms` text NOT NULL COMMENT 'list of synonyms making up this group', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID - identifies the store view these synonyms belong to', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID - identifies the website ID these synonyms belong to', PRIMARY KEY (`group_id`), KEY `SEARCH_SYNONYMS_STORE_ID` (`store_id`), KEY `SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`), FULLTEXT KEY `SEARCH_SYNONYMS_SYNONYMS` (`synonyms`), CONSTRAINT `SEARCH_SYNONYMS_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `SEARCH_SYNONYMS_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='table storing various synonyms groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `search_synonyms` -- LOCK TABLES `search_synonyms` WRITE; /*!40000 ALTER TABLE `search_synonyms` DISABLE KEYS */; /*!40000 ALTER TABLE `search_synonyms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sendfriend_log` -- DROP TABLE IF EXISTS `sendfriend_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sendfriend_log` ( `log_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID', `ip` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Customer IP address', `time` int unsigned NOT NULL DEFAULT '0' COMMENT 'Log time', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', PRIMARY KEY (`log_id`), KEY `SENDFRIEND_LOG_IP` (`ip`), KEY `SENDFRIEND_LOG_TIME` (`time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Send to friend function log storage table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sendfriend_log` -- LOCK TABLES `sendfriend_log` WRITE; /*!40000 ALTER TABLE `sendfriend_log` DISABLE KEYS */; /*!40000 ALTER TABLE `sendfriend_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_creditmemo_0` -- DROP TABLE IF EXISTS `sequence_creditmemo_0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_creditmemo_0` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_creditmemo_0` -- LOCK TABLES `sequence_creditmemo_0` WRITE; /*!40000 ALTER TABLE `sequence_creditmemo_0` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_creditmemo_0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_creditmemo_1` -- DROP TABLE IF EXISTS `sequence_creditmemo_1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_creditmemo_1` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_creditmemo_1` -- LOCK TABLES `sequence_creditmemo_1` WRITE; /*!40000 ALTER TABLE `sequence_creditmemo_1` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_creditmemo_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_invoice_0` -- DROP TABLE IF EXISTS `sequence_invoice_0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_invoice_0` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_invoice_0` -- LOCK TABLES `sequence_invoice_0` WRITE; /*!40000 ALTER TABLE `sequence_invoice_0` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_invoice_0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_invoice_1` -- DROP TABLE IF EXISTS `sequence_invoice_1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_invoice_1` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_invoice_1` -- LOCK TABLES `sequence_invoice_1` WRITE; /*!40000 ALTER TABLE `sequence_invoice_1` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_invoice_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_order_0` -- DROP TABLE IF EXISTS `sequence_order_0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_order_0` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_order_0` -- LOCK TABLES `sequence_order_0` WRITE; /*!40000 ALTER TABLE `sequence_order_0` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_order_0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_order_1` -- DROP TABLE IF EXISTS `sequence_order_1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_order_1` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_order_1` -- LOCK TABLES `sequence_order_1` WRITE; /*!40000 ALTER TABLE `sequence_order_1` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_order_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_shipment_0` -- DROP TABLE IF EXISTS `sequence_shipment_0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_shipment_0` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_shipment_0` -- LOCK TABLES `sequence_shipment_0` WRITE; /*!40000 ALTER TABLE `sequence_shipment_0` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_shipment_0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sequence_shipment_1` -- DROP TABLE IF EXISTS `sequence_shipment_1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sequence_shipment_1` ( `sequence_value` int unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`sequence_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sequence_shipment_1` -- LOCK TABLES `sequence_shipment_1` WRITE; /*!40000 ALTER TABLE `sequence_shipment_1` DISABLE KEYS */; /*!40000 ALTER TABLE `sequence_shipment_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `session` -- DROP TABLE IF EXISTS `session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `session` ( `session_id` varchar(255) NOT NULL COMMENT 'Session Id', `session_expires` int unsigned NOT NULL DEFAULT '0' COMMENT 'Date of Session Expiration', `session_data` mediumblob NOT NULL COMMENT 'Session Data', PRIMARY KEY (`session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Database Sessions Storage'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `session` -- LOCK TABLES `session` WRITE; /*!40000 ALTER TABLE `session` DISABLE KEYS */; /*!40000 ALTER TABLE `session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `setup_module` -- DROP TABLE IF EXISTS `setup_module`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `setup_module` ( `module` varchar(50) NOT NULL COMMENT 'Module', `schema_version` varchar(50) DEFAULT NULL COMMENT 'Schema Version', `data_version` varchar(50) DEFAULT NULL COMMENT 'Data Version', PRIMARY KEY (`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Module versions registry'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `setup_module` -- LOCK TABLES `setup_module` WRITE; /*!40000 ALTER TABLE `setup_module` DISABLE KEYS */; INSERT INTO `setup_module` VALUES ('Mageplaza_Core','1.0.0','1.0.0'); /*!40000 ALTER TABLE `setup_module` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_tablerate` -- DROP TABLE IF EXISTS `shipping_tablerate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shipping_tablerate` ( `pk` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key', `website_id` int NOT NULL DEFAULT '0' COMMENT 'Website ID', `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code', `dest_region_id` int NOT NULL DEFAULT '0' COMMENT 'Destination Region ID', `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)', `condition_name` varchar(30) NOT NULL COMMENT 'Rate Condition name', `condition_value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Rate condition value', `price` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Price', `cost` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Cost', PRIMARY KEY (`pk`), UNIQUE KEY `UNQ_D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Shipping Tablerate'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shipping_tablerate` -- LOCK TABLES `shipping_tablerate` WRITE; /*!40000 ALTER TABLE `shipping_tablerate` DISABLE KEYS */; /*!40000 ALTER TABLE `shipping_tablerate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sitemap` -- DROP TABLE IF EXISTS `sitemap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sitemap` ( `sitemap_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sitemap ID', `sitemap_type` varchar(32) DEFAULT NULL COMMENT 'Sitemap Type', `sitemap_filename` varchar(32) DEFAULT NULL COMMENT 'Sitemap Filename', `sitemap_path` varchar(255) DEFAULT NULL COMMENT 'Sitemap Path', `sitemap_time` timestamp NULL DEFAULT NULL COMMENT 'Sitemap Time', `store_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store ID', PRIMARY KEY (`sitemap_id`), KEY `SITEMAP_STORE_ID` (`store_id`), CONSTRAINT `SITEMAP_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='XML Sitemap'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sitemap` -- LOCK TABLES `sitemap` WRITE; /*!40000 ALTER TABLE `sitemap` DISABLE KEYS */; /*!40000 ALTER TABLE `sitemap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store` -- DROP TABLE IF EXISTS `store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store` ( `store_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Store ID', `code` varchar(32) DEFAULT NULL COMMENT 'Code', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Group ID', `name` varchar(255) NOT NULL COMMENT 'Store Name', `sort_order` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Sort Order', `is_active` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Store Activity', PRIMARY KEY (`store_id`), UNIQUE KEY `STORE_CODE` (`code`), KEY `STORE_WEBSITE_ID` (`website_id`), KEY `STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`), KEY `STORE_GROUP_ID` (`group_id`), CONSTRAINT `STORE_GROUP_ID_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `store_group` (`group_id`) ON DELETE CASCADE, CONSTRAINT `STORE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Stores'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store` -- LOCK TABLES `store` WRITE; /*!40000 ALTER TABLE `store` DISABLE KEYS */; INSERT INTO `store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1); /*!40000 ALTER TABLE `store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_group` -- DROP TABLE IF EXISTS `store_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_group` ( `group_id` smallint unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `name` varchar(255) NOT NULL COMMENT 'Store Group Name', `root_category_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Root Category ID', `default_store_id` smallint 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 `STORE_GROUP_CODE` (`code`), KEY `STORE_GROUP_WEBSITE_ID` (`website_id`), KEY `STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`), CONSTRAINT `STORE_GROUP_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Store Groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_group` -- LOCK TABLES `store_group` WRITE; /*!40000 ALTER TABLE `store_group` DISABLE KEYS */; INSERT INTO `store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store'); /*!40000 ALTER TABLE `store_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_website` -- DROP TABLE IF EXISTS `store_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_website` ( `website_id` smallint 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 unsigned NOT NULL DEFAULT '0' COMMENT 'Sort Order', `default_group_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Default Group ID', `is_default` smallint unsigned DEFAULT '0' COMMENT 'Defines Is Website Default', PRIMARY KEY (`website_id`), UNIQUE KEY `STORE_WEBSITE_CODE` (`code`), KEY `STORE_WEBSITE_SORT_ORDER` (`sort_order`), KEY `STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COMMENT='Websites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_website` -- LOCK TABLES `store_website` WRITE; /*!40000 ALTER TABLE `store_website` DISABLE KEYS */; INSERT INTO `store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1); /*!40000 ALTER TABLE `store_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation` -- DROP TABLE IF EXISTS `tax_calculation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_calculation` ( `tax_calculation_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation ID', `tax_calculation_rate_id` int NOT NULL COMMENT 'Tax Calculation Rate ID', `tax_calculation_rule_id` int NOT NULL COMMENT 'Tax Calculation Rule ID', `customer_tax_class_id` smallint NOT NULL COMMENT 'Customer Tax Class ID', `product_tax_class_id` smallint NOT NULL COMMENT 'Product Tax Class ID', PRIMARY KEY (`tax_calculation_id`), KEY `TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`), KEY `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`), KEY `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`), KEY `TAX_CALC_TAX_CALC_RATE_ID_CSTR_TAX_CLASS_ID_PRD_TAX_CLASS_ID` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`), CONSTRAINT `TAX_CALC_TAX_CALC_RATE_ID_TAX_CALC_RATE_TAX_CALC_RATE_ID` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE, CONSTRAINT `TAX_CALC_TAX_CALC_RULE_ID_TAX_CALC_RULE_TAX_CALC_RULE_ID` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE, CONSTRAINT `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE, CONSTRAINT `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_calculation` -- LOCK TABLES `tax_calculation` WRITE; /*!40000 ALTER TABLE `tax_calculation` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_calculation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rate` -- DROP TABLE IF EXISTS `tax_calculation_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_calculation_rate` ( `tax_calculation_rate_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate ID', `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country ID', `tax_region_id` int 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 DEFAULT NULL COMMENT 'Zip Is Range', `zip_from` int unsigned DEFAULT NULL COMMENT 'Zip From', `zip_to` int unsigned DEFAULT NULL COMMENT 'Zip To', PRIMARY KEY (`tax_calculation_rate_id`), KEY `TAX_CALCULATION_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`), KEY `TAX_CALCULATION_RATE_CODE` (`code`), KEY `IDX_CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rate'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_calculation_rate` -- LOCK TABLES `tax_calculation_rate` WRITE; /*!40000 ALTER TABLE `tax_calculation_rate` DISABLE KEYS */; INSERT INTO `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 `tax_calculation_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rate_title` -- DROP TABLE IF EXISTS `tax_calculation_rate_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_calculation_rate_title` ( `tax_calculation_rate_title_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title ID', `tax_calculation_rate_id` int NOT NULL COMMENT 'Tax Calculation Rate ID', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `value` varchar(255) NOT NULL COMMENT 'Value', PRIMARY KEY (`tax_calculation_rate_title_id`), KEY `TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`), KEY `TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`), CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE, CONSTRAINT `TAX_CALCULATION_RATE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rate Title'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_calculation_rate_title` -- LOCK TABLES `tax_calculation_rate_title` WRITE; /*!40000 ALTER TABLE `tax_calculation_rate_title` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_calculation_rate_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rule` -- DROP TABLE IF EXISTS `tax_calculation_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_calculation_rule` ( `tax_calculation_rule_id` int NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule ID', `code` varchar(255) NOT NULL COMMENT 'Code', `priority` int NOT NULL COMMENT 'Priority', `position` int NOT NULL COMMENT 'Position', `calculate_subtotal` int NOT NULL COMMENT 'Calculate off subtotal option', PRIMARY KEY (`tax_calculation_rule_id`), KEY `TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`), KEY `TAX_CALCULATION_RULE_CODE` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Calculation Rule'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_calculation_rule` -- LOCK TABLES `tax_calculation_rule` WRITE; /*!40000 ALTER TABLE `tax_calculation_rule` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_class` -- DROP TABLE IF EXISTS `tax_class`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_class` ( `class_id` smallint 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=4 DEFAULT CHARSET=utf8mb3 COMMENT='Tax Class'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_class` -- LOCK TABLES `tax_class` WRITE; /*!40000 ALTER TABLE `tax_class` DISABLE KEYS */; INSERT INTO `tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER'); /*!40000 ALTER TABLE `tax_class` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_order_aggregated_created` -- DROP TABLE IF EXISTS `tax_order_aggregated_created`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_order_aggregated_created` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint 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 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 `TAX_ORDER_AGGRED_CREATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`), CONSTRAINT `TAX_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Order Aggregation'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_order_aggregated_created` -- LOCK TABLES `tax_order_aggregated_created` WRITE; /*!40000 ALTER TABLE `tax_order_aggregated_created` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_order_aggregated_created` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_order_aggregated_updated` -- DROP TABLE IF EXISTS `tax_order_aggregated_updated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tax_order_aggregated_updated` ( `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `period` date DEFAULT NULL COMMENT 'Period', `store_id` smallint 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 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 `TAX_ORDER_AGGRED_UPDATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`), CONSTRAINT `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Tax Order Aggregated Updated'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tax_order_aggregated_updated` -- LOCK TABLES `tax_order_aggregated_updated` WRITE; /*!40000 ALTER TABLE `tax_order_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_order_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `theme` -- DROP TABLE IF EXISTS `theme`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `theme` ( `theme_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier', `parent_id` int 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 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=utf8mb3 COMMENT='Core theme'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `theme` -- LOCK TABLES `theme` WRITE; /*!40000 ALTER TABLE `theme` DISABLE KEYS */; INSERT INTO `theme` VALUES (1,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(2,NULL,'Magento/blank','Magento Blank','preview_image_658135967a42a.jpeg',0,'frontend',0,'Magento/blank'),(3,2,'Magento/luma','Magento Luma','preview_image_6581359685c5b.jpeg',0,'frontend',0,'Magento/luma'); /*!40000 ALTER TABLE `theme` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `theme_file` -- DROP TABLE IF EXISTS `theme_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `theme_file` ( `theme_files_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier', `theme_id` int 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 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 `THEME_FILE_THEME_ID_THEME_THEME_ID` (`theme_id`), CONSTRAINT `THEME_FILE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Core theme files'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `theme_file` -- LOCK TABLES `theme_file` WRITE; /*!40000 ALTER TABLE `theme_file` DISABLE KEYS */; /*!40000 ALTER TABLE `theme_file` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `translation` -- DROP TABLE IF EXISTS `translation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `translation` ( `key_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation', `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String', `store_id` smallint 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 NOT NULL DEFAULT '1591228201' COMMENT 'Translation String CRC32 Hash', PRIMARY KEY (`key_id`), UNIQUE KEY `TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`), CONSTRAINT `TRANSLATION_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Translations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `translation` -- LOCK TABLES `translation` WRITE; /*!40000 ALTER TABLE `translation` DISABLE KEYS */; /*!40000 ALTER TABLE `translation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ui_bookmark` -- DROP TABLE IF EXISTS `ui_bookmark`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ui_bookmark` ( `bookmark_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier', `user_id` int unsigned NOT NULL COMMENT 'User ID', `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace', `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier', `current` smallint 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 `UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`), CONSTRAINT `UI_BOOKMARK_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3 COMMENT='Bookmark'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ui_bookmark` -- LOCK TABLES `ui_bookmark` WRITE; /*!40000 ALTER TABLE `ui_bookmark` DISABLE KEYS */; INSERT INTO `ui_bookmark` VALUES (1,1,'cms_page_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}},\"value\":\"Vista predeterminada\"}}}','2023-12-19 07:06:27','2023-12-19 07:06:27'),(2,1,'cms_page_listing','current',0,NULL,'{\"current\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}}}','2023-12-19 07:06:28','2023-12-19 07:06:28'),(3,1,'bulk_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"uuid\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":false,\"sorting\":false},\"user_type\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"start_time\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"uuid\":1,\"start_time\":2,\"description\":3,\"user_type\":4,\"status\":5,\"actions\":6}},\"value\":\"Vista predeterminada\"}}}','2023-12-19 07:07:20','2023-12-19 07:07:20'),(4,1,'bulk_listing','current',0,NULL,'{\"current\":{\"columns\":{\"uuid\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":false,\"sorting\":false},\"user_type\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"start_time\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"uuid\":1,\"start_time\":2,\"description\":3,\"user_type\":4,\"status\":5,\"actions\":6}}}','2023-12-19 07:07:21','2023-12-19 07:07:21'),(5,1,'sales_order_grid','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"ids\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19}},\"value\":\"Vista predeterminada\"}}}','2023-12-19 07:15:45','2023-12-19 07:15:45'),(6,1,'sales_order_grid','current',0,NULL,'{\"current\":{\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"ids\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19}}}','2023-12-19 07:15:46','2023-12-19 07:15:46'),(7,1,'design_config_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"displayMode\":\"grid\",\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}},\"value\":\"Vista predeterminada\"}}}','2023-12-19 07:28:56','2023-12-19 07:28:56'),(8,1,'design_config_listing','current',0,NULL,'{\"current\":{\"displayMode\":\"grid\",\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}}}','2023-12-19 07:28:57','2023-12-19 07:28:57'),(9,1,'design_theme_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4}},\"value\":\"Vista predeterminada\"}}}','2023-12-19 07:40:11','2023-12-19 07:40:11'),(10,1,'design_theme_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4}}}','2023-12-19 07:40:13','2023-12-19 07:40:13'),(11,2,'cms_page_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"filters\":{\"applied\":{\"placeholder\":true}},\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}},\"value\":\"Vista predeterminada\"}}}','2023-12-22 10:33:31','2023-12-22 10:33:31'),(12,2,'cms_page_listing','current',0,NULL,'{\"current\":{\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"filters\":{\"applied\":{\"placeholder\":true}},\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}}}','2023-12-22 10:33:32','2023-12-22 10:33:32'),(13,2,'cms_block_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}},\"value\":\"Vista predeterminada\"}}}','2024-02-06 13:10:17','2024-02-06 13:10:17'),(14,2,'cms_block_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}}}','2024-02-06 13:10:18','2024-02-06 13:10:18'),(15,2,'media_gallery_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":\"32\",\"current\":1,\"options\":{\"32\":{\"value\":32,\"label\":\"32\"},\"48\":{\"value\":48,\"label\":\"48\"},\"64\":{\"value\":64,\"label\":\"64\"}},\"value\":\"32\"},\"columns\":{\"newest_first\":{\"visible\":false,\"sorting\":false},\"oldest_first\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":false,\"sorting\":false},\"path\":{\"visible\":false,\"sorting\":false},\"directory_desc\":{\"visible\":false,\"sorting\":false},\"directory_asc\":{\"visible\":false,\"sorting\":false},\"title\":{\"visible\":false,\"sorting\":false},\"name_az\":{\"visible\":false,\"sorting\":false},\"name_za\":{\"visible\":false,\"sorting\":false},\"source\":{\"visible\":false,\"sorting\":false},\"thumbnail_url\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"displayMode\":\"grid\",\"positions\":{\"source\":0,\"thumbnail_url\":1,\"newest_first\":2,\"oldest_first\":3,\"created_at\":4,\"path\":5,\"directory_desc\":6,\"directory_asc\":7,\"title\":8,\"name_az\":9,\"name_za\":10}},\"value\":\"Vista predeterminada\"}}}','2024-02-06 13:11:43','2024-02-06 13:11:43'),(16,2,'media_gallery_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":\"32\",\"current\":1,\"options\":{\"32\":{\"value\":32,\"label\":\"32\"},\"48\":{\"value\":48,\"label\":\"48\"},\"64\":{\"value\":64,\"label\":\"64\"}},\"value\":\"32\"},\"columns\":{\"newest_first\":{\"visible\":false,\"sorting\":false},\"oldest_first\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":false,\"sorting\":false},\"path\":{\"visible\":false,\"sorting\":false},\"directory_desc\":{\"visible\":false,\"sorting\":false},\"directory_asc\":{\"visible\":false,\"sorting\":false},\"title\":{\"visible\":false,\"sorting\":false},\"name_az\":{\"visible\":false,\"sorting\":false},\"name_za\":{\"visible\":false,\"sorting\":false},\"source\":{\"visible\":false,\"sorting\":false},\"thumbnail_url\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true,\"path\":\"wysiwyg\"}},\"displayMode\":\"grid\",\"positions\":{\"source\":0,\"thumbnail_url\":1,\"newest_first\":2,\"oldest_first\":3,\"created_at\":4,\"path\":5,\"directory_desc\":6,\"directory_asc\":7,\"title\":8,\"name_az\":9,\"name_za\":10}}}','2024-02-06 13:11:45','2024-02-06 13:11:45'),(17,2,'product_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"updated_at\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"visibility\":9,\"status\":10,\"websites\":11,\"short_description\":12,\"special_price\":13,\"special_from_date\":14,\"special_to_date\":15,\"cost\":16,\"weight\":17,\"manufacturer\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"url_key\":31,\"msrp\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"updated_at\":35,\"actions\":36}},\"value\":\"Vista predeterminada\"}}}','2024-02-08 08:30:53','2024-02-08 08:30:53'),(18,2,'product_listing','current',0,NULL,'{\"current\":{\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"updated_at\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"visibility\":9,\"status\":10,\"websites\":11,\"short_description\":12,\"special_price\":13,\"special_from_date\":14,\"special_to_date\":15,\"cost\":16,\"weight\":17,\"manufacturer\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"url_key\":31,\"msrp\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"updated_at\":35,\"actions\":36},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"}}}','2024-02-08 08:34:27','2024-02-08 08:34:27'),(19,2,'design_config_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"displayMode\":\"grid\",\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}},\"value\":\"Vista predeterminada\"}}}','2024-02-12 08:49:20','2024-02-12 08:49:20'),(20,2,'design_config_listing','current',0,NULL,'{\"current\":{\"displayMode\":\"grid\",\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}}}','2024-02-12 08:49:22','2024-02-12 08:49:22'),(21,1,'product_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"updated_at\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false}},\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"visibility\":9,\"status\":10,\"websites\":11,\"short_description\":12,\"special_price\":13,\"special_from_date\":14,\"special_to_date\":15,\"cost\":16,\"weight\":17,\"manufacturer\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"url_key\":31,\"msrp\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"updated_at\":35,\"actions\":36}},\"value\":\"Vista predeterminada\"}}}','2024-03-07 07:19:18','2024-03-07 07:19:18'),(22,1,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"updated_at\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false}},\"search\":{\"value\":\"\"},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"visibility\":9,\"status\":10,\"websites\":11,\"short_description\":12,\"special_price\":13,\"special_from_date\":14,\"special_to_date\":15,\"cost\":16,\"weight\":17,\"manufacturer\":18,\"meta_title\":19,\"meta_keyword\":20,\"meta_description\":21,\"color\":22,\"news_from_date\":23,\"news_to_date\":24,\"custom_design\":25,\"custom_design_from\":26,\"custom_design_to\":27,\"page_layout\":28,\"country_of_manufacture\":29,\"custom_layout\":30,\"url_key\":31,\"msrp\":32,\"gift_message_available\":33,\"tax_class_id\":34,\"updated_at\":35,\"actions\":36}}}','2024-03-07 07:19:20','2024-03-07 07:19:20'),(23,1,'cms_block_listing','default',1,'Vista predeterminada','{\"views\":{\"default\":{\"label\":\"Vista predeterminada\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}},\"value\":\"Vista predeterminada\"}}}','2024-03-07 09:32:10','2024-03-07 09:32:10'),(24,1,'cms_block_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}}}','2024-03-07 09:32:11','2024-03-07 09:32:11'); /*!40000 ALTER TABLE `ui_bookmark` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `url_rewrite` -- DROP TABLE IF EXISTS `url_rewrite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `url_rewrite` ( `url_rewrite_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID', `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code', `entity_id` int 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 unsigned NOT NULL DEFAULT '0' COMMENT 'Redirect Type', `store_id` smallint unsigned NOT NULL COMMENT 'Store ID', `description` varchar(255) DEFAULT NULL COMMENT 'Description', `is_autogenerated` smallint 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 `URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`), KEY `URL_REWRITE_TARGET_PATH` (`target_path`), KEY `URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`), KEY `URL_REWRITE_ENTITY_ID` (`entity_id`), KEY `URL_REWRITE_IS_AUTOGENERATED_METADATA` (`is_autogenerated`,`metadata`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COMMENT='Url Rewrites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `url_rewrite` -- LOCK TABLES `url_rewrite` WRITE; /*!40000 ALTER TABLE `url_rewrite` DISABLE KEYS */; INSERT INTO `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),(6,'cms-page',6,'politica-de-privacidad','cms/page/view/page_id/6',0,1,NULL,1,NULL),(7,'cms-page',7,'aviso-legal','cms/page/view/page_id/7',0,1,NULL,1,NULL),(8,'cms-page',5,'politica-de-cookies','cms/page/view/page_id/5',0,1,NULL,1,NULL),(9,'category',3,'funcionalidades.html','conector-bidireccional-sap-business-one-magento-2.html',301,1,NULL,0,NULL),(10,'category',4,'precios.html','catalog/category/view/id/4',0,1,NULL,1,NULL),(11,'category',5,'casos-de-exito.html','catalog/category/view/id/5',0,1,NULL,1,NULL),(13,'category',3,'conector-bidireccional-sap-business-one-magento-2.html','catalog/category/view/id/3',0,1,NULL,1,NULL),(15,'category',6,'conector-bidireccional-sap-business-one-magento-2/mejoras-programadas.html','catalog/category/view/id/6',0,1,NULL,1,NULL); /*!40000 ALTER TABLE `url_rewrite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `variable` -- DROP TABLE IF EXISTS `variable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `variable` ( `variable_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable ID', `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code', `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name', PRIMARY KEY (`variable_id`), UNIQUE KEY `VARIABLE_CODE` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Variables'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `variable` -- LOCK TABLES `variable` WRITE; /*!40000 ALTER TABLE `variable` DISABLE KEYS */; /*!40000 ALTER TABLE `variable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `variable_value` -- DROP TABLE IF EXISTS `variable_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `variable_value` ( `value_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID', `variable_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Variable ID', `store_id` smallint 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 `VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`), KEY `VARIABLE_VALUE_STORE_ID` (`store_id`), CONSTRAINT `VARIABLE_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE, CONSTRAINT `VARIABLE_VALUE_VARIABLE_ID_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `variable` (`variable_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Variable Value'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `variable_value` -- LOCK TABLES `variable_value` WRITE; /*!40000 ALTER TABLE `variable_value` DISABLE KEYS */; /*!40000 ALTER TABLE `variable_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `vault_payment_token` -- DROP TABLE IF EXISTS `vault_payment_token`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `vault_payment_token` ( `entity_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID', `customer_id` int unsigned DEFAULT NULL COMMENT 'Customer ID', `website_id` int unsigned DEFAULT NULL COMMENT 'Website 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 `VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`), UNIQUE KEY `VAULT_PAYMENT_TOKEN_PAYMENT_METHOD_CODE_CSTR_ID_GATEWAY_TOKEN` (`payment_method_code`,`customer_id`,`gateway_token`), KEY `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`), CONSTRAINT `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Vault tokens of payment'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `vault_payment_token` -- LOCK TABLES `vault_payment_token` WRITE; /*!40000 ALTER TABLE `vault_payment_token` DISABLE KEYS */; /*!40000 ALTER TABLE `vault_payment_token` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `vault_payment_token_order_payment_link` -- DROP TABLE IF EXISTS `vault_payment_token_order_payment_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `vault_payment_token_order_payment_link` ( `order_payment_id` int unsigned NOT NULL COMMENT 'Order payment ID', `payment_token_id` int unsigned NOT NULL COMMENT 'Payment token ID', PRIMARY KEY (`order_payment_id`,`payment_token_id`), KEY `FK_4ED894655446D385894580BECA993862` (`payment_token_id`), CONSTRAINT `FK_4ED894655446D385894580BECA993862` FOREIGN KEY (`payment_token_id`) REFERENCES `vault_payment_token` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `FK_CF37B9D854256534BE23C818F6291CA2` FOREIGN KEY (`order_payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Order payments to vault token'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `vault_payment_token_order_payment_link` -- LOCK TABLES `vault_payment_token_order_payment_link` WRITE; /*!40000 ALTER TABLE `vault_payment_token_order_payment_link` DISABLE KEYS */; /*!40000 ALTER TABLE `vault_payment_token_order_payment_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weee_tax` -- DROP TABLE IF EXISTS `weee_tax`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `weee_tax` ( `value_id` int NOT NULL AUTO_INCREMENT COMMENT 'Value ID', `website_id` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Website ID', `entity_id` int 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 NOT NULL DEFAULT '0' COMMENT 'State', `attribute_id` smallint unsigned NOT NULL COMMENT 'Attribute ID', PRIMARY KEY (`value_id`), KEY `WEEE_TAX_WEBSITE_ID` (`website_id`), KEY `WEEE_TAX_ENTITY_ID` (`entity_id`), KEY `WEEE_TAX_COUNTRY` (`country`), KEY `WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE, CONSTRAINT `WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `WEEE_TAX_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Weee Tax'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `weee_tax` -- LOCK TABLES `weee_tax` WRITE; /*!40000 ALTER TABLE `weee_tax` DISABLE KEYS */; /*!40000 ALTER TABLE `weee_tax` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget` -- DROP TABLE IF EXISTS `widget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget` ( `widget_id` int 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 `WIDGET_WIDGET_CODE` (`widget_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Preconfigured Widgets'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget` -- LOCK TABLES `widget` WRITE; /*!40000 ALTER TABLE `widget` DISABLE KEYS */; /*!40000 ALTER TABLE `widget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance` -- DROP TABLE IF EXISTS `widget_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget_instance` ( `instance_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance ID', `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type', `theme_id` int 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 unsigned NOT NULL DEFAULT '0' COMMENT 'Sort order', PRIMARY KEY (`instance_id`), KEY `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` (`theme_id`), CONSTRAINT `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Instances of Widget for Package Theme'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_instance` -- LOCK TABLES `widget_instance` WRITE; /*!40000 ALTER TABLE `widget_instance` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_instance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance_page` -- DROP TABLE IF EXISTS `widget_instance_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget_instance_page` ( `page_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page ID', `instance_id` int 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 `WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`), CONSTRAINT `WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Instance of Widget on Page'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_instance_page` -- LOCK TABLES `widget_instance_page` WRITE; /*!40000 ALTER TABLE `widget_instance_page` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_instance_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance_page_layout` -- DROP TABLE IF EXISTS `widget_instance_page_layout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget_instance_page_layout` ( `page_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Page ID', `layout_update_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Layout Update ID', PRIMARY KEY (`layout_update_id`,`page_id`), KEY `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`), CONSTRAINT `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID_WIDGET_INSTANCE_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `widget_instance_page` (`page_id`) ON DELETE CASCADE, CONSTRAINT `WIDGET_INSTANCE_PAGE_LYT_LYT_UPDATE_ID_LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Layout updates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_instance_page_layout` -- LOCK TABLES `widget_instance_page_layout` WRITE; /*!40000 ALTER TABLE `widget_instance_page_layout` DISABLE KEYS */; /*!40000 ALTER TABLE `widget_instance_page_layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist` -- DROP TABLE IF EXISTS `wishlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wishlist` ( `wishlist_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID', `customer_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Customer ID', `shared` smallint 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 `WISHLIST_CUSTOMER_ID` (`customer_id`), KEY `WISHLIST_SHARED` (`shared`), CONSTRAINT `WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist main Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wishlist` -- LOCK TABLES `wishlist` WRITE; /*!40000 ALTER TABLE `wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist_item` -- DROP TABLE IF EXISTS `wishlist_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wishlist_item` ( `wishlist_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID', `wishlist_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Wishlist ID', `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID', `store_id` smallint 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 `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`), KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`), KEY `WISHLIST_ITEM_STORE_ID` (`store_id`), CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE, CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL, CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist items'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wishlist_item` -- LOCK TABLES `wishlist_item` WRITE; /*!40000 ALTER TABLE `wishlist_item` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist_item_option` -- DROP TABLE IF EXISTS `wishlist_item_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wishlist_item_option` ( `option_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID', `wishlist_item_id` int unsigned NOT NULL COMMENT 'Wishlist Item ID', `product_id` int unsigned NOT NULL COMMENT 'Product ID', `code` varchar(255) NOT NULL COMMENT 'Code', `value` text COMMENT 'Value', PRIMARY KEY (`option_id`), KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`), CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist Item Option Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wishlist_item_option` -- LOCK TABLES `wishlist_item_option` WRITE; /*!40000 ALTER TABLE `wishlist_item_option` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist_item_option` ENABLE KEYS */; UNLOCK TABLES; /*!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 */; -- Dump completed on 2024-03-15 9:07:08
Copyright ©2021 || Defacer Indonesia