mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
10 lines
239 B
Elixir
10 lines
239 B
Elixir
defmodule TeslaMate.Repo.Migrations.EnableStreaming do
|
|
use Ecto.Migration
|
|
|
|
alias TeslaMate.Settings.CarSettings
|
|
alias TeslaMate.Repo
|
|
|
|
def up, do: Repo.update_all(CarSettings, set: [use_streaming_api: true])
|
|
def down, do: :ok
|
|
end
|