We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 919d565 commit f8283faCopy full SHA for f8283fa
spring-modulith-events/spring-modulith-events-jdbc/src/main/resources/schema-postgresql.sql
@@ -8,5 +8,5 @@ CREATE TABLE IF NOT EXISTS event_publication
8
completion_date TIMESTAMP WITH TIME ZONE,
9
PRIMARY KEY (id)
10
);
11
-CREATE INDEX IF NOT EXISTS event_publication_by_listener_id_and_serialized_event_idx ON event_publication (listener_id, serialized_event);
+CREATE INDEX IF NOT EXISTS event_publication_serialized_event_hash_idx ON event_publication USING hash(serialized_event);
12
CREATE INDEX IF NOT EXISTS event_publication_by_completion_date_idx ON event_publication (completion_date);
0 commit comments