You are here

function menu_firstchild_schema_alter in Menu Firstchild 7

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

Implementation of hook_schema_alter().

File

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

Code

function menu_firstchild_schema_alter(&$schema) {
  $schema['menu_links']['indexes']['plid'] = array(
    'plid',
  );
}