mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
c8f206c438
* fix(setup): check if indexes exist in step 9 * fix(setup09): ignore the inverted index
31 lines
501 B
PL/PgSQL
31 lines
501 B
PL/PgSQL
-- replace agg_type_agg_id
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS eventstore.agg_type_agg_id;
|
|
COMMIT;
|
|
|
|
BEGIN;
|
|
CREATE INDEX agg_type_agg_id ON eventstore.events (
|
|
instance_id
|
|
, aggregate_type
|
|
, aggregate_id
|
|
);
|
|
COMMIT;
|
|
|
|
-- replace agg_type
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS eventstore.agg_type;
|
|
COMMIT;
|
|
|
|
BEGIN;
|
|
CREATE INDEX agg_type ON eventstore.events (
|
|
instance_id
|
|
, aggregate_type
|
|
, event_sequence
|
|
);
|
|
COMMIT;
|
|
|
|
-- drop unused index
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS eventstore.agg_type_seq;
|
|
COMMIT;
|