menu_node_edit_schema()Implements hook_schema().
./menu_node_edit.install, line 10
<?php
function menu_node_edit_schema() {
$schema = array();
$schema['menu_node_edit'] = array(
'fields' => array(
'mlid' => array('type' => 'int', 'not null' => TRUE)),
'primary key' => array('mlid'),
);
$schema['menu_node_edit_user'] = array(
'fields' => array(
'uid' => array('type' => 'int', 'not null' => TRUE),
'mlid' => array('type' => 'int', 'not null' => TRUE)),
'primary key' => array('uid', 'mlid'),
);
return $schema;
}
?>