mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
10 lines
212 B
Elixir
10 lines
212 B
Elixir
defmodule TeslaMate.Repo.Migrations.UseStreamingApi do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:car_settings) do
|
|
add :use_streaming_api, :boolean, default: true, null: false
|
|
end
|
|
end
|
|
end
|