From 710ee3f68cadb0395aedf9fd7161ef6197588df9 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 13 Aug 2020 15:31:18 +0200 Subject: [PATCH] Fix snapshot store migration table name --- src/Migration/PostgresMessageStoreDefinition.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Migration/PostgresMessageStoreDefinition.php b/src/Migration/PostgresMessageStoreDefinition.php index 8445958..7f16055 100644 --- a/src/Migration/PostgresMessageStoreDefinition.php +++ b/src/Migration/PostgresMessageStoreDefinition.php @@ -45,7 +45,7 @@ public static function snapshotStoreUpSchema(): string CREATE INDEX "snapshot_store_aggregate_id" ON "snapshot_store" ("aggregate_id"); ALTER TABLE snapshot_store ADD CONSTRAINT "snapshot_store_unique_aggregate_id" UNIQUE ("aggregate_id"); ', - self::EVENT_STORE, + self::SNAPSHOT_STORE, ); }