ipld-eth-server/db/migrations/00010_add_node_id_index_to_blocks.sql

6 lines
107 B
SQL

-- +goose Up
CREATE INDEX node_id_index ON eth_blocks (node_id);
-- +goose Down
DROP INDEX node_id_index;