Odyssey.DB.WorkflowRun (odyssey v0.1.4)
View SourceA workflow run is a a single run of a specified workflow.
Summary
Types
@type status() :: :running | :suspended | :completed | :error
@type t() :: %Odyssey.DB.WorkflowRun{ __meta__: Ecto.Schema.Metadata.t(), ended_at: DateTime.t() | nil, id: integer(), inserted_at: DateTime.t(), next_phase: integer(), oban_job_id: integer(), phases: Odyssey.Workflow.t(), started_at: DateTime.t(), state: term(), status: status(), updated_at: DateTime.t() }