You are here

function international_phone_field_schema in International Phone Field 7.2

Same name and namespace in other branches
  1. 7 international_phone.install \international_phone_field_schema()

Implements hook_field_schema().

File

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

Code

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