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/system/system.schema | |
parent | 82fe475b60d652da877ceb9383315a7efa6f2729 (diff) | |
download | brdo-2765d143c03bb4b811f09a83fcff41a9e9ec53ac.tar.gz brdo-2765d143c03bb4b811f09a83fcff41a9e9ec53ac.tar.bz2 |
#147657 by chx: menu module update function
Diffstat (limited to 'modules/system/system.schema')
-rw-r--r-- | modules/system/system.schema | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.schema b/modules/system/system.schema index e3e9a7e0a..2e63b39ff 100644 --- a/modules/system/system.schema +++ b/modules/system/system.schema @@ -117,7 +117,7 @@ function system_schema() { $schema['menu_links'] = array( 'fields' => array( - 'menu_name' => array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''), + 'menu_name' => array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''), 'mlid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE), 'plid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'link_path' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), @@ -141,6 +141,7 @@ function system_schema() { 'p7' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p8' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'p9' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), + 'updated' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'small'), ), 'indexes' => array( 'path_menu' => array(array('link_path', 128), 'menu_name'), |