Created
April 16, 2019 13:10
-
-
Save 0-Sony/00549a3c71c72bf8b38e59a575aee36b to your computer and use it in GitHub Desktop.
Magento 2 : Reset all products data and use the default config value
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE FROM `catalog_product_entity_text` where store_id <> 0; | |
DELETE FROM `catalog_product_entity_datetime` where store_id <> 0; | |
DELETE FROM `catalog_product_entity_decimal` where store_id <> 0; | |
DELETE FROM `catalog_product_entity_int` where store_id <> 0; | |
DELETE FROM `catalog_product_entity_varchar` where store_id <> 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment