You are here

feeds_test_field.install in Feeds 7.2

Defines schema for Feeds test field.

File

tests/modules/feeds_test_field/feeds_test_field.install
View source
<?php

/**
 * @file
 * Defines schema for Feeds test field.
 */

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

Functions