Created
December 29, 2018 11:26
-
-
Save yogeshdubey2006/d987ded99881bda202c73ff00f57cac2 to your computer and use it in GitHub Desktop.
Magento 2 Reset Customer Password through SQL
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 `password_hash` = CONCAT(SHA2('xxxxxxxxYOURPASSWORD', 256), ':xxxxxxxx:1') // change YOURPASSWORD to your password to reset | |
WHERE `entity_id` = 199 and `email`="[email protected]"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment