mirror of
https://github.com/netfun2000/hipudding-teslamate.git
synced 2026-02-27 09:44:28 +08:00
10 lines
210 B
Elixir
10 lines
210 B
Elixir
defmodule TeslaMate.Repo.Migrations.AddAddressToChargingProcess do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:charging_processes) do
|
|
add(:address_id, references(:addresses))
|
|
end
|
|
end
|
|
end
|