You are here

function uc_order_update_last_removed in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_order/uc_order.install \uc_order_update_last_removed()

Implements hook_update_last_removed().

File

uc_order/uc_order.install, line 710
Install, update and uninstall functions for the uc_order module.

Code

function uc_order_update_last_removed() {

  // 7.x-3.0-beta2 and earlier were installed with schema version 0,
  // which causes update.php to fail.
  return drupal_get_installed_schema_version('uc_order') == 0 ? 0 : 6015;
}