d9e2bece27
- Facilitate modifying migrations without cascading consequences for later migrations updating the same tables
7 lines
101 B
SQL
7 lines
101 B
SQL
-- +goose Up
|
|
CREATE INDEX number_index ON blocks (number);
|
|
|
|
|
|
-- +goose Down
|
|
DROP INDEX number_index;
|