menu_node_edit_schema

Versions
menu_node_edit
menu_node_edit_schema()

Implements hook_schema().

Code

./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;
}
?>

Contact

  • agentrickard [at] gmail [dot] com

Donations

My Amazon.com Wish List