Skip to main content

infra/sql/0009_workflow_execution_metadata.sql

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

alter table if exists workflow_executions
add column if not exists input_ref text;

alter table if exists workflow_executions
add column if not exists output_ref text;

alter table if exists workflow_executions
add column if not exists evidence_ref text;

alter table if exists workflow_executions
add column if not exists duration_ms integer;

alter table if exists workflow_executions
add column if not exists retry_count integer not null default 0;

alter table if exists workflow_executions
add column if not exists failure_code text;

create index if not exists idx_workflow_executions_workspace_status_requested
on workflow_executions(workspace_id, status, requested_at desc);