You are here

field_token_value.install in Field Token Value 7

Install file for the Field Token Value module.

File

field_token_value.install
View source
<?php

/**
 * @file
 * Install file for the Field Token Value module.
 */

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

Functions