'Translated values for menu links.', 'fields' => array( 'mlid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'description' => t('The primary identifier for a feedback message.'), ), 'language' => array( 'type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '', 'description' => "Language code, e.g. 'de' or 'en-US'.", ), 'link_title' => array( 'description' => 'The text displayed for the link, which may be modified by a title callback stored in {menu_router}.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), // 'options' => array( // 'description' => 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.', // 'type' => 'text', // 'not null' => FALSE, // ), ), 'indexes' => array( 'mlid' => array('mlid'), ), ); return $schema; }