Created
February 2, 2016 08:08
-
-
Save mcjwsk/694c3fb018206a49bd3a to your computer and use it in GitHub Desktop.
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
UPDATE customer_entity SET email = REPLACE(email, '@', '-test@abcxyz123-'); | |
UPDATE sales_flat_order SET customer_email = REPLACE(customer_email, '@', '-test@abcxyz123-'); | |
UPDATE sales_flat_order_address SET email = REPLACE(email, '@', '-test@abcxyz123-'); | |
UPDATE sales_flat_order_grid SET customer_email = REPLACE(customer_email, '@', '-test@abcxyz123-'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment