You are here

function field_token_value_field_schema in Field Token Value 7

Implements hook_field_schema().

File

./field_token_value.install, line 11
Install file for the Field Token Value module.

Code

function field_token_value_field_schema($field) {
  $columns = array(
    'value' => array(
      'type' => 'text',
      'size' => 'big',
      'not null' => FALSE,
    ),
  );
  return array(
    'columns' => $columns,
  );
}