defmodule Medicode.Repo.Migrations.AlterCodeFeedbackTextToBeTypeText do use Ecto.Migration def change do alter table(:code_feedbacks) do modify(:text, :text, from: :string) end end end