prop/priv/repo/migrations/20260425210051_add_home_qth_to_users.exs

12 lines
268 B
Elixir

defmodule Microwaveprop.Repo.Migrations.AddHomeQthToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :home_grid, :string
add :home_lat, :float
add :home_lon, :float
add :home_elevation_m, :integer
end
end
end