mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 09:27:33 +00:00
11 lines
235 B
SQL
11 lines
235 B
SQL
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;
|