function menu_schema

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/menu/menu.install \menu_schema()

Implementation of hook_schema().

Archivo

drupal-6.x/modules/menu/menu.install, line 28

Código

function menu_schema() {
  $schema['menu_custom'] = array(
    'description' => 'Holds definitions for top-level custom menus (for example, Primary Links).',
    'fields' => array(
      'menu_name' => array(
        'type' => 'varchar',
        'length' => 32,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
      ),
      'title' => array(
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
        'description' => 'Menu title; displayed at top of block.',
      ),
      'description' => array(
        'type' => 'text',
        'not null' => FALSE,
        'description' => 'Menu description.',
      ),
    ),
    'primary key' => array('menu_name'),
  );

  return $schema;
}