You are here

function feeds_test_field_field_schema in Feeds 7.2

Implements hook_field_schema().

File

tests/modules/feeds_test_field/feeds_test_field.install, line 11
Defines schema for Feeds test field.

Code

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