Skip to content

Instantly share code, notes, and snippets.

@peterjaap
Last active April 25, 2024 08:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save peterjaap/97431fddad0e2015fccbfd961f15d239 to your computer and use it in GitHub Desktop.
Save peterjaap/97431fddad0e2015fccbfd961f15d239 to your computer and use it in GitHub Desktop.
Magento 2 changelog table structure - note; this has mage_ prefix.
-- MySQL dump 10.13 Distrib 5.7.19-17, for debian-linux-gnu (x86_64)
--
-- ------------------------------------------------------
-- Server version 5.7.19-17
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
--
-- Table structure for table `mage_m2_cl_catalog_compare_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_catalog_compare_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_catalog_compare_item` (
`catalog_compare_item_id` int(11) NOT NULL COMMENT 'Catalog_compare_item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`catalog_compare_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_catalog_compare_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_cataloginventory_stock_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_cataloginventory_stock_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_cataloginventory_stock_item` (
`item_id` int(11) NOT NULL COMMENT 'Item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_cataloginventory_stock_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity_datetime`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity_datetime`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity_datetime` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity_datetime';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity_decimal`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity_decimal`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity_decimal` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity_decimal';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity_int`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity_int`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity_int` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity_int';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity_text`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity_text`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity_text` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity_text';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_address_entity_varchar`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_address_entity_varchar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_address_entity_varchar` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_address_entity_varchar';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity_datetime`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity_datetime`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity_datetime` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity_datetime';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity_decimal`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity_decimal`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity_decimal` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity_decimal';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity_int`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity_int`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity_int` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity_int';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity_text`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity_text`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity_text` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity_text';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_customer_entity_varchar`
--
DROP TABLE IF EXISTS `mage_m2_cl_customer_entity_varchar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_customer_entity_varchar` (
`value_id` int(11) NOT NULL COMMENT 'Value_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_customer_entity_varchar';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_downloadable_link_purchased`
--
DROP TABLE IF EXISTS `mage_m2_cl_downloadable_link_purchased`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_downloadable_link_purchased` (
`purchased_id` int(11) NOT NULL COMMENT 'Purchased_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`purchased_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_downloadable_link_purchased';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_downloadable_link_purchased_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_downloadable_link_purchased_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_downloadable_link_purchased_item` (
`item_id` int(11) NOT NULL COMMENT 'Item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_downloadable_link_purchased_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_eav_entity_store`
--
DROP TABLE IF EXISTS `mage_m2_cl_eav_entity_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_eav_entity_store` (
`entity_store_id` int(11) NOT NULL COMMENT 'Entity_store_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_eav_entity_store';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_gift_message`
--
DROP TABLE IF EXISTS `mage_m2_cl_gift_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_gift_message` (
`gift_message_id` int(11) NOT NULL COMMENT 'Gift_message_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`gift_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_gift_message';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_log_visitor`
--
DROP TABLE IF EXISTS `mage_m2_cl_log_visitor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_log_visitor` (
`visitor_id` int(11) NOT NULL COMMENT 'Visitor_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`visitor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_log_visitor';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_newsletter_subscriber`
--
DROP TABLE IF EXISTS `mage_m2_cl_newsletter_subscriber`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_newsletter_subscriber` (
`subscriber_id` int(11) NOT NULL COMMENT 'Subscriber_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`subscriber_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_newsletter_subscriber';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_rating_option_vote`
--
DROP TABLE IF EXISTS `mage_m2_cl_rating_option_vote`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_rating_option_vote` (
`vote_id` int(11) NOT NULL COMMENT 'Vote_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`vote_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_rating_option_vote';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_rating_option_vote_aggregated`
--
DROP TABLE IF EXISTS `mage_m2_cl_rating_option_vote_aggregated`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_rating_option_vote_aggregated` (
`primary_id` int(11) NOT NULL COMMENT 'Primary_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`primary_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_rating_option_vote_aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_report_compared_product_index`
--
DROP TABLE IF EXISTS `mage_m2_cl_report_compared_product_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_report_compared_product_index` (
`index_id` int(11) NOT NULL COMMENT 'Index_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`index_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_report_compared_product_index';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_report_event`
--
DROP TABLE IF EXISTS `mage_m2_cl_report_event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_report_event` (
`event_id` int(11) NOT NULL COMMENT 'Event_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_report_event';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_report_viewed_product_index`
--
DROP TABLE IF EXISTS `mage_m2_cl_report_viewed_product_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_report_viewed_product_index` (
`index_id` int(11) NOT NULL COMMENT 'Index_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`index_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_report_viewed_product_index';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_review`
--
DROP TABLE IF EXISTS `mage_m2_cl_review`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_review` (
`review_id` int(11) NOT NULL COMMENT 'Review_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_review';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_review_detail`
--
DROP TABLE IF EXISTS `mage_m2_cl_review_detail`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_review_detail` (
`detail_id` int(11) NOT NULL COMMENT 'Detail_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`detail_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_review_detail';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_review_entity_summary`
--
DROP TABLE IF EXISTS `mage_m2_cl_review_entity_summary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_review_entity_summary` (
`primary_id` int(11) NOT NULL COMMENT 'Primary_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`primary_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_review_entity_summary';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_review_store`
--
DROP TABLE IF EXISTS `mage_m2_cl_review_store`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_review_store` (
`review_id` int(11) NOT NULL COMMENT 'Review_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_review_store';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_creditmemo`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_creditmemo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_creditmemo` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_creditmemo';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_creditmemo_grid`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_creditmemo_grid`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_creditmemo_grid` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_creditmemo_grid';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_creditmemo_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_creditmemo_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_creditmemo_item` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_creditmemo_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_invoice`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_invoice`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_invoice` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_invoice';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_invoice_grid`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_invoice_grid`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_invoice_grid` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_invoice_grid';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_invoice_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_invoice_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_invoice_item` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_invoice_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order_address`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order_address`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order_address` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order_address';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order_grid`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order_grid`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order_grid` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order_grid';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order_item` (
`item_id` int(11) NOT NULL COMMENT 'Item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order_payment`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order_payment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order_payment` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order_payment';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_order_status_history`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_order_status_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_order_status_history` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_order_status_history';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_address`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_address`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_address` (
`address_id` int(11) NOT NULL COMMENT 'Address_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`address_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_address';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_address_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_address_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_address_item` (
`address_item_id` int(11) NOT NULL COMMENT 'Address_item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`address_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_address_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_item` (
`item_id` int(11) NOT NULL COMMENT 'Item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_item_option`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_item_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_item_option` (
`option_id` int(11) NOT NULL COMMENT 'Option_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_item_option';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_payment`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_payment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_payment` (
`payment_id` int(11) NOT NULL COMMENT 'Payment_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`payment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_payment';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_quote_shipping_rate`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_quote_shipping_rate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_quote_shipping_rate` (
`rate_id` int(11) NOT NULL COMMENT 'Rate_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`rate_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_quote_shipping_rate';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_shipment`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_shipment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_shipment` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_shipment';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_shipment_grid`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_shipment_grid`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_shipment_grid` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_shipment_grid';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_shipment_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_shipment_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_shipment_item` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_shipment_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_flat_shipment_track`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_flat_shipment_track`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_flat_shipment_track` (
`entity_id` int(11) NOT NULL COMMENT 'Entity_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_flat_shipment_track';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_order_tax`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_order_tax`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_order_tax` (
`tax_id` int(11) NOT NULL COMMENT 'Tax_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`tax_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_order_tax';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_sales_order_tax_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_sales_order_tax_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_sales_order_tax_item` (
`tax_item_id` int(11) NOT NULL COMMENT 'Tax_item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`tax_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_sales_order_tax_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_wishlist`
--
DROP TABLE IF EXISTS `mage_m2_cl_wishlist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_wishlist` (
`wishlist_id` int(11) NOT NULL COMMENT 'Wishlist_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`wishlist_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_wishlist';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_wishlist_item`
--
DROP TABLE IF EXISTS `mage_m2_cl_wishlist_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_wishlist_item` (
`wishlist_item_id` int(11) NOT NULL COMMENT 'Wishlist_item_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`wishlist_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_wishlist_item';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `mage_m2_cl_wishlist_item_option`
--
DROP TABLE IF EXISTS `mage_m2_cl_wishlist_item_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mage_m2_cl_wishlist_item_option` (
`option_id` int(11) NOT NULL COMMENT 'Option_id',
`operation` text COMMENT 'Operation',
`processed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Processed',
PRIMARY KEY (`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mage_m2_cl_wishlist_item_option';
/*!40101 SET character_set_client = @saved_cs_client */;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!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 2018-01-09 14:56:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment