mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-15 03:23:52 +00:00
11 lines
153 B
MySQL
11 lines
153 B
MySQL
|
-- +up
|
||
|
-- +begin
|
||
|
CREATE INDEX positions_traded_at ON positions (traded_at, profit);
|
||
|
-- +end
|
||
|
|
||
|
-- +down
|
||
|
|
||
|
-- +begin
|
||
|
DROP INDEX positions_traded_at;
|
||
|
-- +end
|