Update Cheat Sheet authored by Daniel Kazior's avatar Daniel Kazior
## Update a Customer password in database
## Update a Customer password in database (identified by email)
```sql
UPDATE `customer_entity` SET `password_hash` = CONCAT(SHA2('xxxxxxxxtest123', 256), ':xxxxxxxx:1') WHERE `email` = 'nullfuenf@crefopay.de';
UPDATE `customer_entity` SET `password_hash` = CONCAT(SHA2('xxxxxxxxPASSWORD', 256), ':xxxxxxxx:1') WHERE `email` = 'example@crefopay.de';
```
\ No newline at end of file