You are here

function weather_update_6501 in Weather 6.5

Implementation of hook_update_N().

Insert Messina, Sicily, Italy.

File

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

Code

function weather_update_6501() {
  $ret = array();
  $sql = "INSERT INTO {weather_icao} (icao, country, name, latitude, longitude)\n    VALUES ('LICF', 'Italy', 'Messina', 38.200000, 15.550000)";
  $ret[] = update_sql($sql);
  return $ret;
}