You are here

function weather_update_6504 in Weather 6.5

Implementation of hook_update_N().

Insert La Roche-sur-Yon, France.

File

./weather.install, line 602
Database installation of weather module.

Code

function weather_update_6504() {
  $ret = array();

  // Insert city
  $sql = "INSERT INTO {weather_icao} (icao, country, name, latitude, longitude)\n    VALUES ('LFRI', 'France', 'La Roche-sur-Yon', 46.701944, -1.378611)";
  $ret[] = update_sql($sql);
  return $ret;
}