Files
vibe-kanban/backend/migrations/20250707000000_add_worktree_deleted_flag.sql
Solomon 0aaa6eb239 Preiodic cleanup of git worktrees (#87)
- Remove worktree of deleted tasks
- Remove worktree of inactive tasks after 24h of inactivity
- Create a new worktree on followup attempts of cold tasks
2025-07-09 10:43:20 +01:00

2 lines
153 B
SQL

-- Add worktree_deleted flag to track when worktrees are cleaned up
ALTER TABLE task_attempts ADD COLUMN worktree_deleted BOOLEAN NOT NULL DEFAULT FALSE;