forked from cerc-io/ipld-eth-server
d9e2bece27
- Facilitate modifying migrations without cascading consequences for later migrations updating the same tables
6 lines
112 B
SQL
6 lines
112 B
SQL
-- +goose Up
|
|
CREATE INDEX block_id_index ON transactions (block_id);
|
|
|
|
-- +goose Down
|
|
DROP INDEX block_id_index;
|