You are here

function field_object_field_schema in Corresponding Entity References 7.3

Implements hook_field_schema().

File

field_object/field_object.install, line 6

Code

function field_object_field_schema(array $field) {
  return array(
    'columns' => array(
      'path' => array(
        'type' => 'text',
        'size' => 'tiny',
        'description' => 'The path to the instance, represented as text.',
      ),
    ),
  );
}