You are here

apachesolr_reference.install in Apachesolr Reference 7

Contains install and update functions for apachesolr_reference.

File

apachesolr_reference.install
View source
<?php

/**
 * @file
 * Contains install and update functions for apachesolr_reference.
 */

/**
 * Implements hook_field_schema().
 */
function apachesolr_reference_field_schema($field) {
  if ($field['type'] == 'apachesolr_reference') {
    $schema = array(
      'columns' => array(
        'target_id' => array(
          'description' => 'The id of the target SOLR object.',
          'type' => 'varchar',
          'length' => '255',
          'not null' => TRUE,
        ),
      ),
      'indexes' => array(
        'target_id' => array(
          'target_id',
        ),
      ),
    );
    return $schema;
  }
}

Functions