summaryrefslogblamecommitdiff
path: root/makima/migrations/20250127000000_add_local_only.sql
blob: 2cd594eb54c0c4dc942aff7c7ba36ebecf7d7200 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                                                                               
-- Add local_only column to contracts table
-- When enabled, automatic completion actions (branch, merge, pr) are skipped,
-- allowing users to manually handle code changes via patch files or other means.

ALTER TABLE contracts
ADD COLUMN IF NOT EXISTS local_only BOOLEAN NOT NULL DEFAULT FALSE;

COMMENT ON COLUMN contracts.local_only IS 'Whether to skip automatic completion actions (branch, merge, pr) for this contract';