mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 12:47:24 +00:00
8 lines
188 B
MySQL
8 lines
188 B
MySQL
![]() |
CREATE INDEX IF NOT EXISTS ca_fill_idx ON eventstore.events (
|
||
|
event_sequence DESC
|
||
|
, instance_id
|
||
|
) STORING (
|
||
|
id
|
||
|
, creation_date
|
||
|
, created_at
|
||
|
) WHERE created_at IS NULL;
|