All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Add claude_id field to sessions (migration 026) for tracking Claude process IDs across pod restarts - Extend session repository with UpdateClaudeID and session lookup methods - Improve kubernetes executor with better error handling and exec streaming - Add claudebox client/server improvements for session lifecycle - Expand sessions handler with exec streaming endpoint - Add comprehensive tests for sessions and kubernetes executor Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
423 B
SQL
8 lines
423 B
SQL
-- Add Claude session tracking to sessions table.
|
|
-- Depends on: 019_conversations.sql
|
|
-- claude_session_id: the Claude Code session ID used for --resume in subsequent turns.
|
|
-- conversation_record_id: links this session to its conversation message history.
|
|
ALTER TABLE sessions
|
|
ADD COLUMN IF NOT EXISTS claude_session_id VARCHAR(255),
|
|
ADD COLUMN IF NOT EXISTS conversation_record_id UUID REFERENCES conversations(id);
|