defmodule Wish.Repo.Migrations.AddImageUrl do use Ecto.Migration def change do alter table("items") do add :image_url, :string end end end