Fix NexradWorker UUID type: use generate() not bingenerate() for insert_all

This commit is contained in:
Graham McIntire 2026-04-10 14:13:33 -05:00
parent 1f8fc4d4aa
commit 4487fc22e9

View file

@ -73,7 +73,7 @@ defmodule Microwaveprop.Workers.NexradWorker do
rows =
Enum.map(observations, fn obs ->
obs
|> Map.put(:id, Ecto.UUID.bingenerate())
|> Map.put(:id, Ecto.UUID.generate())
|> Map.put(:inserted_at, now)
|> Map.put(:updated_at, now)
end)