mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
10 lines
357 B
SQL
10 lines
357 B
SQL
-- +goose Up
|
|
CREATE INDEX trades_symbol ON trades(symbol);
|
|
CREATE INDEX trades_symbol_fee_currency ON trades(symbol, fee_currency, traded_at);
|
|
CREATE INDEX trades_traded_at_symbol ON trades(traded_at, symbol);
|
|
|
|
-- +goose Down
|
|
DROP INDEX trades_symbol ON trades;
|
|
DROP INDEX trades_symbol_fee_currency ON trades;
|
|
DROP INDEX trades_traded_at_symbol ON trades;
|