defmodule Frenzy.Repo.Migrations.ChangeItemFieldsToText do use Ecto.Migration def change do alter table(:items) do modify :guid, :text modify :url, :text modify :creator, :text end end end