5 lines
107 B
MySQL
5 lines
107 B
MySQL
|
-- +goose Up
|
||
|
CREATE INDEX tx_from_index ON transactions(tx_from);
|
||
|
|
||
|
-- +goose Down
|
||
|
DROP INDEX tx_from_index;
|