medicode / priv /repo /migrations /20240224141225_alter_code_feedback_text_to_be_type_text.exs
timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame
No virus
206 Bytes
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