Add indices for tx_to and tx_from (#112)

This commit is contained in:
Matt K
2017-12-20 16:58:37 -06:00
committed by GitHub
parent 24bc83a448
commit a786241c8c
6 changed files with 21 additions and 0 deletions
@@ -0,0 +1 @@
DROP INDEX tx_to_index;
@@ -0,0 +1 @@
CREATE INDEX tx_to_index ON transactions(tx_to);
@@ -0,0 +1 @@
DROP INDEX tx_from_index;
@@ -0,0 +1 @@
CREATE INDEX tx_from_index ON transactions(tx_from);