mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
11 lines
169 B
SQL
11 lines
169 B
SQL
-- +up
|
|
-- +begin
|
|
CREATE INDEX trades_price_quantity ON trades (order_id,price,quantity);
|
|
-- +end
|
|
|
|
-- +down
|
|
|
|
-- +begin
|
|
DROP INDEX trades_price_quantity ON trades
|
|
-- +end
|