You are here

function menu_firstchild_schema_alter in Menu Firstchild 6

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

Implementation of hook_schema_alter().

File

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

Code

function menu_firstchild_schema_alter(&$schema) {

  // Add index for plid to {menu_links}.
  $schema['menu_links']['indexes']['plid'] = array(
    'plid',
  );
}