fix(setup): check if indexes exist in step 9 (#5400)

* fix(setup): check if indexes exist in step 9

* fix(setup09): ignore the inverted index
This commit is contained in:
Silvan
2023-03-08 16:19:12 +01:00
committed by GitHub
parent 20e4f1ce57
commit c8f206c438
2 changed files with 2 additions and 25 deletions

View File

@@ -28,12 +28,3 @@ COMMIT;
BEGIN;
DROP INDEX IF EXISTS eventstore.agg_type_seq;
COMMIT;
-- index to search event payload
BEGIN;
DROP INDEX IF EXISTS eventstore.event_search;
COMMIT;
BEGIN;
CREATE INDEX event_search ON eventstore.events USING gin (event_data);
COMMIT;