diff -r fcf75e232c5b -r 0ff3ba646492 web/drupal/modules/menu/menu.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/drupal/modules/menu/menu.install Fri Aug 21 16:26:26 2009 +0000 @@ -0,0 +1,58 @@ + '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; +} +