PgFlow.Schema.StepState (PgFlow v0.1.0)

Copy Markdown View Source

Schema for the pgflow.step_states table.

Represents the state of a step within a specific run with composite primary key (run_id, step_slug).

Summary

Types

t()

@type t() :: %PgFlow.Schema.StepState{
  __meta__: term(),
  completed_at: term(),
  created_at: term(),
  error_message: term(),
  failed_at: term(),
  initial_tasks: term(),
  output: term(),
  remaining_deps: term(),
  remaining_tasks: term(),
  run: term(),
  run_id: term(),
  started_at: term(),
  status: term(),
  step: term(),
  step_slug: term(),
  step_tasks: term()
}