mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 05:02:21 +00:00
fix: correct imports (#1630)
* fix: correct import for errors * fix: add missing translations * fix(eventstore): index * fix(eventstore): use table instead of index * fix(proto): correct info * fix(migrations): use eventstore
This commit is contained in:
7
migrations/cockroach/V1.40__indexes.sql
Normal file
7
migrations/cockroach/V1.40__indexes.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user