ipld-eth-server/db/migrations/20171220222500_tx_from_index.sql

6 lines
108 B
MySQL
Raw Normal View History

-- +goose Up
CREATE INDEX tx_from_index ON transactions(tx_from);
-- +goose Down
DROP INDEX tx_from_index;