Created
October 2, 2015 13:01
-
-
Save antoinekociuba/c0a9091d6eb3b5982fb5 to your computer and use it in GitHub Desktop.
Update customer/order email addresses in test environment database (prevent to accidentally send test emails to real customers)
This file contains 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 order email addresses ## | |
UPDATE `sales_flat_order` | |
SET `customer_email` = CONCAT('test__', `customer_email`) | |
WHERE `customer_email` NOT IN ('[email protected]', '[email protected]') | |
AND `customer_email` NOT LIKE 'test__%'; | |
## Update customer email addresses ## | |
UPDATE `customer_entity` | |
SET `email` = CONCAT('test__', `email`) | |
WHERE `email` NOT IN ('[email protected]', '[email protected]') | |
AND `email` NOT LIKE 'test__%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How about newsletter subscribers?