You are here

function weather_update_6507 in Weather 6.5

Implementation of hook_update_N().

Remove Maribo Lufthavn, which does no longer exist.

File

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

Code

function weather_update_6507() {
  $ret = array();
  $sql = "DELETE FROM {weather_icao} WHERE icao='EKMB'";
  $ret[] = update_sql($sql);
  return $ret;
}