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