You are here

function commerce_kickstart_update_7203 in Commerce Kickstart 7.2

Remove the old price sort.

File

./commerce_kickstart.install, line 846
Installation code for Commerce Kickstart.

Code

function commerce_kickstart_update_7203() {
  $sorts = entity_load('search_api_sort', FALSE, array(
    'field' => 'field_product_commerce_price_amount_float_asc',
  ));
  if (!empty($sorts)) {
    $sort = reset($sorts);
    $sort
      ->delete();
  }
}