You are here

function location_fax_update_6301 in Location 7.3

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

Drupal 6 updates.

File

contrib/location_fax/location_fax.install, line 114
Install, update and uninstall functions for the location_fax module.

Code

function location_fax_update_6301() {
  db_change_field('location_fax', 'fax', 'fax', array(
    'description' => 'Fax number',
    'type' => 'varchar',
    'length' => 31,
    'not null' => TRUE,
    'default' => '',
  ));
}