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