From 78eef25f1ac5d991343cf16fb3200f4f1c84683b Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 12 Feb 2020 17:39:57 -0500 Subject: [PATCH] add reposted_claim_hash index fixes https://github.com/lbryio/lbry-sdk/issues/2782 --- lbry/wallet/server/db/writer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lbry/wallet/server/db/writer.py b/lbry/wallet/server/db/writer.py index 2377d46c8..94339fbb6 100644 --- a/lbry/wallet/server/db/writer.py +++ b/lbry/wallet/server/db/writer.py @@ -94,6 +94,7 @@ class SQLDB: create index if not exists claim_txo_hash_idx on claim (txo_hash); create index if not exists claim_activation_height_idx on claim (activation_height, claim_hash); create index if not exists claim_expiration_height_idx on claim (expiration_height); + create index if not exists claim_reposted_claim_hash_idx on claim (reposted_claim_hash); """ CREATE_SUPPORT_TABLE = """