Cheat Sheet aktualisieren authored by Daniel Kazior's avatar Daniel Kazior
## Create new Admin user from CLI
```bash
php bin/magento admin:user:create --admin-user=mageplaza --admin-password=WeLoveMagento --admin-email=hi@mageplaza.com --admin-firstname=Mageplaza --admin-lastname=Family
```
## Update a Customer password in database (identified by email)
```sql
UPDATE `customer_entity` SET `password_hash` = CONCAT(SHA2('xxxxxxxxPASSWORD', 256), ':xxxxxxxx:1') WHERE `email` = 'example@crefopay.de';
......
......