You are here

function cck_phone_field_schema in Phone Number 7

Implements hook_field_schema().

File

./cck_phone.install, line 12
Defines phone number fields for CCK. Installation file

Code

function cck_phone_field_schema($field) {
  return array(
    'columns' => array(
      'number' => array(
        'type' => 'varchar',
        'length' => 15,
        'not null' => FALSE,
      ),
      'country_codes' => array(
        'type' => 'varchar',
        'length' => 2,
        'not null' => FALSE,
      ),
      'extension' => array(
        'type' => 'varchar',
        'length' => 6,
        'not null' => FALSE,
      ),
    ),
  );
}