You are here

function location_fax_update_6301 in Location 6.3

Same name and namespace in other branches
  1. 7.5 contrib/location_fax/location_fax.install \location_fax_update_6301()
  2. 7.3 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 99
Installation routines.

Code

function location_fax_update_6301() {
  $ret = array();
  db_change_field($ret, 'location_fax', 'fax', 'fax', array(
    'type' => 'varchar',
    'length' => 31,
    'not null' => TRUE,
    'default' => '',
  ));
  return $ret;
}