You are here

function merci_update_5 in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2

Same name and namespace in other branches
  1. 6 merci.install \merci_update_5()

File

./merci.install, line 578
merci Installer / Uninstaller

Code

function merci_update_5() {
  if (module_exists("number")) {
    merci_add_group_taxonomy();
    merci_create_cck_fields();
  }
  else {
    drupal_set_message(t("You need to install and enable the cck number module for this update."));
  }
  return array(
    array(
      'success' => TRUE,
      'query' => 'Should only be doing db updates.  But I am doing a lot more.',
    ),
  );
}