feat: add pushed_at field to ClaudeJob schema

Nullable DateTime column to record when the agent's feature branch was
pushed to origin. Enables the UI to show a 'pushed' state independently
of DONE status.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Janpeter Visser 2026-05-01 11:55:01 +02:00
parent 3bb87f17ba
commit 120a05347b
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "claude_jobs" ADD COLUMN "pushed_at" TIMESTAMP(3);

View file

@ -260,6 +260,7 @@ model ClaudeJob {
claimed_at DateTime?
started_at DateTime?
finished_at DateTime?
pushed_at DateTime?
plan_snapshot String?
branch String?
summary String?