mirror of
https://github.com/netfun2000/hipudding-teslamate.git
synced 2026-02-27 09:44:28 +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
|