Magento 2 : Mass delete categories
Magento 2 : Mass delete categories
Sometime it’s required to delete all categories and products from database during development. Here is a sql script for Magento2 to delete all categories from database.
SET FOREIGN_KEY_CHECKS = 0; TRUNCATE TABLE catalog_category_entity; TRUNCATE TABLE catalog_category_entity_datetime; TRUNCATE TABLE catalog_category_entity_decimal; TRUNCATE TABLE catalog_category_entity_int; TRUNCATE TABLE…
View On WordPress



















