From 27932c198715f29de2cf7b7c2992fbb3cd6f93c2 Mon Sep 17 00:00:00 2001 From: Rikard Bartholf Date: Wed, 8 Sep 2021 13:09:46 +0200 Subject: [PATCH] Add index for addresses in samples (#222) --- migrations/000.336.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/000.336.sql diff --git a/migrations/000.336.sql b/migrations/000.336.sql new file mode 100644 index 0000000..af75de5 --- /dev/null +++ b/migrations/000.336.sql @@ -0,0 +1,2 @@ +-- Add index for addresses in the samples table +CREATE INDEX ix_samples_address_id ON samples(address_id);