priv/test_repo/migrations/20260601000003_add_trace_context_to_runs.exs
defmodule Continuum.Test.Repo.Migrations.AddTraceContextToRuns do
use Ecto.Migration
def change do
alter table(:continuum_runs) do
add :trace_context, :bytea
end
end
end