-- Apply during deployment if these indexes are not already present.
-- Do not run ALTER TABLE from storefront/customer requests.

ALTER TABLE `oc_order_option`
  ADD KEY `order_id_order_product_id_order_option_id` (`order_id`, `order_product_id`, `order_option_id`);

ALTER TABLE `oc_order_voucher`
  ADD KEY `order_id` (`order_id`);
