6 lines
102 B
SQL
6 lines
102 B
SQL
-- +goose Up
|
|
CREATE INDEX tx_to_index ON transactions(tx_to);
|
|
|
|
-- +goose Down
|
|
DROP INDEX tx_to_index;
|