mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
14 lines
244 B
Elixir
14 lines
244 B
Elixir
defmodule TeslaMate.Repo.Migrations.AddInsideTemp do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:positions) do
|
|
add(:inside_temp, :float)
|
|
end
|
|
|
|
alter table(:trips) do
|
|
add(:inside_temp_avg, :float)
|
|
end
|
|
end
|
|
end
|