- Add precip_1h_in and wx_codes fields to ASOS surface observations - Add IEMRE reanalysis schema for radar-derived hourly precipitation - Add IemreFetchWorker with exponential backoff and idempotency - Integrate IEMRE enqueue into cron weather backfill pipeline - All existing QSOs marked iemre_queued=false for automatic backfill
10 lines
240 B
Elixir
10 lines
240 B
Elixir
defmodule Microwaveprop.Repo.Migrations.AddPrecipitationToSurfaceObservations do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:surface_observations) do
|
|
add :precip_1h_in, :float
|
|
add :wx_codes, :string
|
|
end
|
|
end
|
|
end
|