fields(array( 'country_id' => 638, 'country_name' => 'RĂ©union', 'country_iso_code_2' => 'RE', 'country_iso_code_3' => 'REU', 'version' => 2, )) ->execute(); // No zones // Set address format uc_set_address_format( 638, "!company\r\n" . "!first_name !last_name\r\n" . "!street1\r\n" . "!street2\r\n" . "!city !zone_code !postal_code\r\n" . "!country_name_if" ); } /** * Implements hook_update() with $version being the only argument. * Add a new case for each version update, and be sure to always include the * latest changes in the install function. */ function reunion_update($version) { switch ($version) { case 2: // Correct ISO-3166-1 country name db_update('uc_countries') ->fields(array('country_name' => 'RĂ©union')) ->condition('country_id', 638) ->execute(); break; } }