prop/priv/repo/migrations/20260408211056_add_keying_to_beacons.exs

9 lines
206 B
Elixir

defmodule Microwaveprop.Repo.Migrations.AddKeyingToBeacons do
use Ecto.Migration
def change do
alter table(:beacons) do
add :keying, :string, null: false, default: "on_off"
end
end
end