drupal/modules/menu/menu.schema

18 lines
506 B
Plaintext

<?php
// $Id$
function menu_schema() {
$schema['menu_custom'] = array(
'fields' => array(
// This is used as a block delta so length is 32.
'menu_name' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''),
'title' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
'description' => array('type' => 'text', 'not null' => FALSE),
),
'primary key' => array('menu_name'),
);
return $schema;
}