defmodule Frenzy.Repo.Migrations.ItemsAddTombstone do use Ecto.Migration def change do alter table(:items) do add :tombstone, :boolean end end end