1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Mview/etc/mview.xsd">
- <view id="catalogrule_rule" class="Magento\CatalogRule\Model\Indexer\Rule\RuleProductIndexer" group="indexer">
- <subscriptions>
- <table name="catalogrule" entity_column="rule_id" />
- </subscriptions>
- </view>
- <view id="catalogrule_product" class="Magento\CatalogRule\Model\Indexer\Product\ProductRuleIndexer" group="indexer">
- <subscriptions>
- <table name="catalog_product_entity" entity_column="entity_id" />
- <table name="catalog_product_entity_datetime" entity_column="entity_id" />
- <table name="catalog_product_entity_decimal" entity_column="entity_id" />
- <table name="catalog_product_entity_gallery" entity_column="entity_id" />
- <table name="catalog_product_entity_int" entity_column="entity_id" />
- <table name="catalog_product_entity_text" entity_column="entity_id" />
- <table name="catalog_product_entity_tier_price" entity_column="entity_id" />
- <table name="catalog_product_entity_varchar" entity_column="entity_id" />
- <table name="catalog_category_product" entity_column="product_id" />
- </subscriptions>
- </view>
- <view id="catalog_product_price" class="Magento\Catalog\Model\Indexer\Product\Price" group="indexer">
- <subscriptions>
- <table name="catalogrule_product_price" entity_column="product_id" />
- </subscriptions>
- </view>
- </config>
|