You are here

function menu_firstchild_update_6001 in Menu Firstchild 6

Same name and namespace in other branches
  1. 7 menu_firstchild.install \menu_firstchild_update_6001()

Implementation of hook_update_N().

File

./menu_firstchild.install, line 39
Installation file for the menu_firstchild module.

Code

function menu_firstchild_update_6001() {
  $ret = array();

  // Add custom index to menu_links table.
  db_add_index($ret, 'menu_links', 'plid', array(
    'plid',
  ));
  return $ret;
}