6 lines
108 B
SQL
6 lines
108 B
SQL
-- +goose Up
|
|
CREATE INDEX tx_from_index ON transactions(tx_from);
|
|
|
|
-- +goose Down
|
|
DROP INDEX tx_from_index;
|