From b676907fd78b0f6522161f975c730d654d5c0df3 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 4 Jun 2019 19:16:11 -0400 Subject: [PATCH] added index for claim expiration_height --- lbrynet/wallet/server/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lbrynet/wallet/server/db.py b/lbrynet/wallet/server/db.py index 2bd0f446d..4c120699f 100644 --- a/lbrynet/wallet/server/db.py +++ b/lbrynet/wallet/server/db.py @@ -135,6 +135,7 @@ class SQLDB: create index if not exists claim_timestamp_idx on claim (timestamp); create index if not exists claim_height_idx on claim (height); create index if not exists claim_activation_height_idx on claim (activation_height); + create index if not exists claim_expiration_height_idx on claim (expiration_height); create index if not exists claim_public_key_hash_idx on claim (public_key_hash); create index if not exists claim_claim_type_idx on claim (claim_type);