defmodule Frenzy.Repo.Migrations.ChangeItemTitleText do use Ecto.Migration def change do alter table(:items) do modify :title, :text end end end