You are here

function location_phone_update_6301 in Location 7.3

Same name and namespace in other branches
  1. 6.3 contrib/location_phone/location_phone.install \location_phone_update_6301()
  2. 7.5 contrib/location_phone/location_phone.install \location_phone_update_6301()
  3. 7.4 contrib/location_phone/location_phone.install \location_phone_update_6301()

Drupal 6 updates.

File

contrib/location_phone/location_phone.install, line 119
Install, update and uninstall functions for the location_phone module.

Code

function location_phone_update_6301() {
  db_change_field('location_phone', 'phone', 'phone', array(
    'description' => 'Phone number',
    'type' => 'varchar',
    'length' => 31,
    'not null' => TRUE,
    'default' => '',
  ));
}