summaryrefslogtreecommitdiff
path: root/modules/system/system.schema
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.schema')
-rw-r--r--modules/system/system.schema3
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'),