Forge.Schema.StageExecution (Forge v0.1.1)

View Source

Ecto schema for stage execution history.

Tracks which stages have been applied to samples, including status and timing.

Summary

Types

t()

@type t() :: %Forge.Schema.StageExecution{
  __meta__: term(),
  applied_at: DateTime.t() | nil,
  attempt: integer(),
  duration_ms: integer() | nil,
  error_message: String.t() | nil,
  id: integer() | nil,
  sample: Forge.Schema.Sample.t() | Ecto.Association.NotLoaded.t() | nil,
  sample_id: binary() | nil,
  stage_config_hash: String.t() | nil,
  stage_name: String.t() | nil,
  status: String.t()
}