frenzy/priv/repo/migrations/20200718235114_item_add_con...

10 lines
185 B
Elixir

defmodule Frenzy.Repo.Migrations.ItemAddContentType do
use Ecto.Migration
def change do
alter table(:items) do
add :content_type, :string, default: nil
end
end
end