Created
December 20, 2019 21:51
-
-
Save willboudle/424c978f048ffb4bd76f55fec5e0683a to your computer and use it in GitHub Desktop.
Magento 2 sql update customer password
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('xxxxxxxxPASSWORD', 256), ':xxxxxxxx:1') | |
| WHERE `email` = "guysemail@hotmail.com"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment