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