mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
12 lines
210 B
Elixir
12 lines
210 B
Elixir
defmodule TeslaMate.Repo.Migrations.ExtendCarTable do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:cars) do
|
|
add(:vin, :text)
|
|
add(:name, :text)
|
|
add(:version, :text)
|
|
end
|
|
end
|
|
end
|