From ae11d72f6649fcc836db05323d2baf449fb3d897 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 30 May 2019 16:13:46 -0400 Subject: [PATCH] added claim.effective_amount index on wallet server --- 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 542129525..ccd9e7eb5 100644 --- a/lbrynet/wallet/server/db.py +++ b/lbrynet/wallet/server/db.py @@ -117,6 +117,7 @@ class SQLDB: 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_effective_amount_idx on claim (effective_amount); create index if not exists claim_trending_group_idx on claim (trending_group); create index if not exists claim_trending_mixed_idx on claim (trending_mixed); create index if not exists claim_trending_local_idx on claim (trending_local);