ipld-eth-server/db/migrations/00022_tx_from_index.sql
2019-02-26 00:52:54 -06:00

6 lines
108 B
SQL

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