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