tarakan/priv/repo/migrations/20260712012545_add_raw_document_to_scans.exs
Maxfield Luke af6077b9c3
All checks were successful
CI and deploy / Test (push) Successful in 4m52s
CI and deploy / Deploy production (push) Successful in 23s
Initial commit on Forgejo
Fresh repository history for elektrine/tarakan hosted at
https://git.elektrine.com/elektrine/tarakan.
2026-07-29 04:43:40 -04:00

12 lines
391 B
Elixir

defmodule Tarakan.Repo.Migrations.AddRawDocumentToScans do
use Ecto.Migration
def change do
alter table(:scans) do
# The Tarakan Scan Format document exactly as the harness submitted it.
# Findings are parsed into scan_findings rows for querying; this keeps
# the model's raw report on the record for human review.
add :raw_document, :text
end
end
end