You are here

function telephone_field_schema in Telephone 7

Implements hook_field_schema().

File

./telephone.install, line 11
Install, update and uninstall functions for the Telephone module.

Code

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