frenzy/priv/repo/migrations/20190310234846_items_add_tombstone.exs
2019-03-14 19:48:46 -04:00

10 lines
168 B
Elixir

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