telephone.install

Install, update and uninstall functions for the Telephone module.

File

drupal/core/modules/telephone/telephone.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Telephone module.
 */

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

Functions

Namesort descending Description
telephone_field_schema Implements hook_field_schema().