Changes
Page history
Cheat Sheet aktualisieren
authored
Mar 01, 2024
by
Daniel Kazior
Show whitespace changes
Inline
Side-by-side
Cheat-Sheet.md
View page @
07ce4761
...
...
@@ -3,7 +3,7 @@
UPDATE
`customer_entity`
SET
`password_hash`
=
CONCAT
(
SHA2
(
'xxxxxxxxPASSWORD'
,
256
),
':xxxxxxxx:1'
)
WHERE
`email`
=
'example@crefopay.de'
;
```
## Update incrementID (sequential order number) to a new value
`
## Update incrementID (sequential order number) to a new value
```
sql
ALTER
TABLE
`sequence_invoice_1`
AUTO_INCREMENT
=
{
$
newValue
};
```