From e753a5f98d8d51a8401e17ba9893122ac2db7705 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Tue, 2 Feb 2021 12:55:05 +0100 Subject: [PATCH] P5-6656 add index to improved perfomance in the redirects table (#180) --- migrations/000.295.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 migrations/000.295.sql diff --git a/migrations/000.295.sql b/migrations/000.295.sql new file mode 100644 index 0000000..52ff50f --- /dev/null +++ b/migrations/000.295.sql @@ -0,0 +1,3 @@ +--P5-6656: add index to improved perfomance in the redirects table + +create index market_locale_id_source_uri_idx on redirects(market_locale_id, source_uri);