feat: wait for enrolled sensors to announce, factory reset them on deletion

This commit is contained in:
2026-05-15 15:07:04 +02:00
parent 4c66642cd4
commit b434896e71
8 changed files with 99 additions and 5 deletions
@@ -0,0 +1,9 @@
defmodule Localiser.Repo.Migrations.AddConfirmedToSensors do
use Ecto.Migration
def change do
alter table(:sensors) do
add :confirmed, :boolean, default: false, null: false
end
end
end