You are here

search_api_federated_solr.install in Search API Federated Solr 7

Install, update, and uninstall functions for the search_api_federated_solr module.

File

search_api_federated_solr.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for the search_api_federated_solr module.
 */

/**
 * Implements hook_field_schema().
 */
function search_api_federated_solr_field_schema($field) {
  return array(
    'columns' => array(
      'value' => array(
        'type' => 'varchar',
        'length' => 255,
        'not null' => FALSE,
      ),
    ),
  );
}

Functions