You are here

function advanced_menu_blocks_schema in Advanced Menu 7

Implementation of hook_schema().

File

blocks/advanced_menu_blocks.install, line 20

Code

function advanced_menu_blocks_schema() {
  $schema['advanced_menu_blocks'] = array(
    'description' => t('Holds block visibility settings for menus'),
    'fields' => array(
      'menu_name' => array(
        'type' => 'varchar',
        'length' => 32,
        'not null' => TRUE,
        'default' => '',
        'description' => t('The {menu_custom}.menu_name of the menu.'),
      ),
    ),
    'primary key' => array(
      'menu_name',
    ),
  );
  return $schema;
}