mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
11 lines
235 B
MySQL
11 lines
235 B
MySQL
|
UPDATE
|
||
|
eventstore.events e
|
||
|
SET
|
||
|
creation_date = we.next_cd
|
||
|
, "position" = (EXTRACT(EPOCH FROM we.next_cd))
|
||
|
FROM
|
||
|
wrong_events we
|
||
|
WHERE
|
||
|
e.event_sequence = we.event_sequence
|
||
|
AND e.instance_id = we.instance_id;
|