mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
7 lines
291 B
MySQL
7 lines
291 B
MySQL
|
use auth;
|
||
|
CREATE INDEX IF NOT EXISTS auth_code on auth.auth_requests (code);
|
||
|
|
||
|
use eventstore;
|
||
|
CREATE INDEX IF NOT EXISTS default_event_query on eventstore.events (aggregate_type, aggregate_id, event_type, resource_owner);
|
||
|
DROP INDEX IF EXISTS event_type;
|
||
|
DROP INDEX IF EXISTS resource_owner;
|