forked from LBRYCommunity/lbry-sdk
add reposted_claim_hash index
fixes https://github.com/lbryio/lbry-sdk/issues/2782
This commit is contained in:
parent
c9305fd070
commit
78eef25f1a
1 changed files with 1 additions and 0 deletions
|
@ -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 = """
|
||||
|
|
Loading…
Reference in a new issue