diff options
Diffstat (limited to 'modules/menu/menu.schema')
-rw-r--r-- | modules/menu/menu.schema | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/menu/menu.schema b/modules/menu/menu.schema index 289ccf0f0..bc8c68a5b 100644 --- a/modules/menu/menu.schema +++ b/modules/menu/menu.schema @@ -4,7 +4,8 @@ function menu_schema() { $schema['menu_custom'] = array( 'fields' => array( - 'menu_name' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), + // 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), ), |