d9e2bece27
- Facilitate modifying migrations without cascading consequences for later migrations updating the same tables
6 lines
103 B
SQL
6 lines
103 B
SQL
-- +goose Up
|
|
CREATE INDEX node_id_index ON blocks (node_id);
|
|
|
|
-- +goose Down
|
|
DROP INDEX node_id_index;
|