diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-29 20:46:18 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-29 20:46:18 +0000 |
commit | 2765d143c03bb4b811f09a83fcff41a9e9ec53ac (patch) | |
tree | 33a667115a3011c22771d8b7373d0b9e948387bb /modules/menu/menu.schema | |
parent | 82fe475b60d652da877ceb9383315a7efa6f2729 (diff) | |
download | brdo-2765d143c03bb4b811f09a83fcff41a9e9ec53ac.tar.gz brdo-2765d143c03bb4b811f09a83fcff41a9e9ec53ac.tar.bz2 |
#147657 by chx: menu module update function
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), ), |