Skip to content

Instantly share code, notes, and snippets.

@willboudle
Created December 20, 2019 21:51
Show Gist options
  • Select an option

  • Save willboudle/424c978f048ffb4bd76f55fec5e0683a to your computer and use it in GitHub Desktop.

Select an option

Save willboudle/424c978f048ffb4bd76f55fec5e0683a to your computer and use it in GitHub Desktop.
Magento 2 sql update customer password
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