Files
archived-teslamate/priv/repo/migrations/20190816165713_extend_car_table.exs
Adrian Kumpf 1f28f6a1b4 Store car name
2019-08-18 20:32:23 +02:00

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