You are here

function views_menu_reference_field_schema in Views Menu Reference 7

Implements hook_field_schema().

File

./views_menu_reference.install, line 10

Code

function views_menu_reference_field_schema($field) {
  $columns = array(
    'mlid' => array(
      'type' => 'int',
      'size' => 'big',
      'unsigned' => FALSE,
      'not null' => TRUE,
    ),
    'depth' => array(
      'type' => 'varchar',
      'length' => 3,
      'not null' => TRUE,
    ),
  );
  return array(
    'columns' => $columns,
    'foreign keys' => array(
      'format' => array(
        'table' => 'menu_links',
        'columns' => array(
          'mlid' => 'mlid',
        ),
      ),
    ),
  );
}