mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
10 lines
191 B
Elixir
10 lines
191 B
Elixir
defmodule TeslaMate.Repo.Migrations.AddUsableBatteryLevel do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:positions) do
|
|
add(:usable_battery_level, :integer)
|
|
end
|
|
end
|
|
end
|