11 lines
160 B
SQL
11 lines
160 B
SQL
-- +up
|
|
-- +begin
|
|
CREATE INDEX trades_price_quantity ON trades (order_id,price,quantity);
|
|
-- +end
|
|
|
|
-- +down
|
|
|
|
-- +begin
|
|
DROP INDEX trades_price_quantity;
|
|
-- +end
|