frenzy/priv/repo/migrations/20190310234846_items_add_to...

10 lines
168 B
Elixir
Raw Permalink Normal View History

2019-03-14 23:48:46 +00:00
defmodule Frenzy.Repo.Migrations.ItemsAddTombstone do
use Ecto.Migration
def change do
alter table(:items) do
add :tombstone, :boolean
end
end
end