summaryrefslogtreecommitdiff
path: root/makima/migrations/20260126000000_add_local_only_mode.sql
blob: 27af087d790995d4578da3716ca56c978fbb9a45 (plain) (blame)
1
2
3
4
5
6
7
-- Add local_only column to contracts
ALTER TABLE contracts ADD COLUMN local_only BOOLEAN NOT NULL DEFAULT false;

-- Index for filtering by local_only mode
CREATE INDEX idx_contracts_local_only ON contracts(local_only) WHERE local_only = true;

COMMENT ON COLUMN contracts.local_only IS 'When true, tasks do not auto-execute completion actions and work stays in worktrees';