Skip to content
GitLab
Explore
Sign in
Changes
Page history
Create Cheat Sheet
authored
Jul 08, 2022
by
Daniel Kazior
Hide whitespace changes
Inline
Side-by-side
Cheat-Sheet.md
0 → 100644
View page @
321a7025
## Update a Customer password in database
```
sql
UPDATE
`customer_entity`
SET
`password_hash`
=
CONCAT
(
SHA2
(
'xxxxxxxxtest123'
,
256
),
':xxxxxxxx:1'
)
WHERE
`email`
=
'nullfuenf@crefopay.de'
;
```
\ No newline at end of file