You are here

function phone_field_schema in Phone 7

Same name and namespace in other branches
  1. 7.2 phone.install \phone_field_schema()

Implements hook_field_schema().

File

./phone.install, line 11
Install/Update/Uninstall functions for phone module

Code

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