prop/priv/repo/migrations/20260330180421_add_precipitation_to_surface_observations.exs
Graham McIntire 3228835636
Add IEM precipitation data to QSO weather pipeline
- 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
2026-03-30 13:18:11 -05:00

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