defmodule Wish.Repo.Migrations.AddItemPrice do use Ecto.Migration def change do alter table("items") do add :price, :integer end end end