You are here

phone.install in Phone 7

Same filename and directory in other branches
  1. 6 phone.install
  2. 7.2 phone.install

Install/Update/Uninstall functions for phone module

File

phone.install
View source
<?php

/**
 * @file
 * Install/Update/Uninstall functions for phone module
 */

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

// TODO: data migration from the old DB structure, could be tough..

Functions

Namesort descending Description
phone_field_schema Implements hook_field_schema().