- Overlay HRRR duct layers on elevation profile chart (green bands) - Add flagged_invalid field to contacts with toggle button on detail page - Fix prune_old_grid_profiles to only delete 0.125° grid profiles, preserving QSO-linked HRRR data at arbitrary positions - Auto-enqueue HRRR fetch when viewing contact without HRRR data (<48h) - Compact solar conditions and contact details layout - Add band/mode/distance info line to elevation profile section
9 lines
219 B
Elixir
9 lines
219 B
Elixir
defmodule Microwaveprop.Repo.Migrations.AddFlaggedInvalidToContacts do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:qsos) do
|
|
add :flagged_invalid, :boolean, default: false, null: false
|
|
end
|
|
end
|
|
end
|