add trade price quantity index

This commit is contained in:
c9s 2021-01-29 18:28:07 +08:00
parent b8d7ae7687
commit d128373842

View File

@ -0,0 +1,10 @@
-- +up
-- +begin
CREATE INDEX trades_price_quantity ON trades (order_id,price,quantity);
-- +end
-- +down
-- +begin
DROP INDEX trades_price_quantity ON trades
-- +end