defmodule Medicode.Repo.Migrations.AddStatusToTranscriptions do use Ecto.Migration def change do alter table("transcriptions") do add :status, :integer, null: false, default: 0 end end end