friends/friends/priv/repo/migrations/20221105233742_add_addresses_to_friends.exs
2022-11-05 22:06:04 -07:00

10 lines
172 B
Elixir

defmodule Friends.Repo.Migrations.AddAddressesToFriends do
use Ecto.Migration
def change do
alter table(:friends) do
add :address, :string
end
end
end