Created
June 12, 2014 18:42
-
-
Save jerrylopez/348e3aa8734cc861dc21 to your computer and use it in GitHub Desktop.
Clear the CMS Static Blocks and Pages from Magento database in one swoop!
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
| SET FOREIGN_KEY_CHECKS = 0; | |
| TRUNCATE TABLE `cms_block`; | |
| TRUNCATE TABLE `cms_block_store`; | |
| TRUNCATE TABLE `cms_page`; | |
| TRUNCATE TABLE `cms_page_store`; | |
| SET FOREIGN_KEY_CHECKS = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment