-
-
Save jbelke/7d2d14cc4e12461fb173909271628971 to your computer and use it in GitHub Desktop.
Cleanup Magento 1 database
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
-- Customers | |
SET FOREIGN_KEY_CHECKS=0; | |
TRUNCATE customer_address_entity; | |
TRUNCATE customer_address_entity_datetime; | |
TRUNCATE customer_address_entity_decimal; | |
TRUNCATE customer_address_entity_int; | |
TRUNCATE customer_address_entity_text; | |
TRUNCATE customer_address_entity_varchar; | |
TRUNCATE customer_entity; | |
TRUNCATE customer_entity_datetime; | |
TRUNCATE customer_entity_decimal; | |
TRUNCATE customer_entity_int; | |
TRUNCATE customer_entity_text; | |
TRUNCATE customer_entity_varchar; | |
-- Sales | |
TRUNCATE `sales_flat_creditmemo`; | |
TRUNCATE `sales_flat_creditmemo_comment`; | |
TRUNCATE `sales_flat_creditmemo_grid`; | |
TRUNCATE `sales_flat_creditmemo_item`; | |
TRUNCATE `sales_flat_invoice`; | |
TRUNCATE `sales_flat_invoice_comment`; | |
TRUNCATE `sales_flat_invoice_grid`; | |
TRUNCATE `sales_flat_invoice_item`; | |
TRUNCATE `sales_flat_order`; | |
TRUNCATE `sales_flat_order_address`; | |
TRUNCATE `sales_flat_order_grid`; | |
TRUNCATE `sales_flat_order_item`; | |
TRUNCATE `sales_flat_order_payment`; | |
TRUNCATE `sales_flat_order_status_history`; | |
TRUNCATE `sales_flat_quote`; | |
TRUNCATE `sales_flat_quote_address`; | |
TRUNCATE `sales_flat_quote_address_item`; | |
TRUNCATE `sales_flat_quote_item`; | |
TRUNCATE `sales_flat_quote_item_option`; | |
TRUNCATE `sales_flat_quote_payment`; | |
TRUNCATE `sales_flat_quote_shipping_rate`; | |
TRUNCATE `sales_flat_shipment`; | |
TRUNCATE `sales_flat_shipment_comment`; | |
TRUNCATE `sales_flat_shipment_grid`; | |
TRUNCATE `sales_flat_shipment_item`; | |
TRUNCATE `sales_flat_shipment_track`; | |
TRUNCATE `sales_invoiced_aggregated`; | |
TRUNCATE `sales_invoiced_aggregated_order`; | |
TRUNCATE `sales_payment_transaction`; | |
TRUNCATE `sales_order_aggregated_created`; | |
TRUNCATE `sales_order_tax`; | |
TRUNCATE `sales_order_tax_item`; | |
TRUNCATE `sendfriend_log`; | |
SET FOREIGN_KEY_CHECKS=1; |
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
-- Compare | |
TRUNCATE `catalog_compare_item`; | |
-- Wishlist | |
TRUNCATE `wishlist_item_option`; | |
TRUNCATE `wishlist_item`; | |
TRUNCATE `wishlist`; | |
-- Admin notification | |
TRUNCATE `adminnotification_inbox`; | |
-- Dataflow | |
TRUNCATE `dataflow_batch_export`; | |
TRUNCATE `dataflow_batch_import`; | |
-- Logs | |
TRUNCATE `log_customer`; | |
TRUNCATE `log_quote`; | |
TRUNCATE `log_summary`; | |
TRUNCATE `log_summary_type`; | |
TRUNCATE `log_url`; | |
TRUNCATE `log_url_info`; | |
TRUNCATE `log_visitor`; | |
TRUNCATE `log_visitor_info`; | |
TRUNCATE `log_visitor_online`; | |
-- Report | |
TRUNCATE `report_event`; | |
TRUNCATE `report_viewed_product_index`; | |
TRUNCATE `report_compared_product_index`; | |
-- Search | |
TRUNCATE `catalogsearch_fulltext`; | |
TRUNCATE `catalogsearch_query`; | |
TRUNCATE `catalogsearch_recommendations`; | |
TRUNCATE `catalogsearch_result`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment