farmbot_os/priv/migrations/1489430596999249438-custom_...

8 lines
193 B
Elixir

defmodule RemoveArduinoFwUpdates do
def run(json) do
hardware = json["hardware"]
hardware = Map.put(hardware, "custom_firmware", false)
%{json | "hardware" => hardware}
end
end