Created
December 29, 2018 12:12
-
-
Save yogeshdubey2006/06e07f5a411307e5795f68ba724904ad to your computer and use it in GitHub Desktop.
Magento 1 - Reset all 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_varchar` caev | |
JOIN `customer_entity` ce ON ce.entity_id=caev.entity_id | |
JOIN `eav_attribute` ea ON ea.entity_type_id=ce.entity_type_id AND caev.attribute_id=ea.attribute_id | |
SET caev.value=MD5('admin123') | |
WHERE ea.attribute_code='password_hash'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment