diff options
| author | soryu <soryu@soryu.co> | 2026-01-26 20:27:40 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-26 20:27:40 +0000 |
| commit | bffce4eede3d487071632808b6e990846e2e6973 (patch) | |
| tree | 237ec9aff47057f93508e1e8759d2aa1ec00d1b8 /makima/migrations | |
| parent | 3dd8f32bad2b3ba886f0b0ab4c4796fd67ec0bca (diff) | |
| parent | 950fd7e57538ccb20fab6100ad86951d8f6108b4 (diff) | |
| download | soryu-bffce4eede3d487071632808b6e990846e2e6973.tar.gz soryu-bffce4eede3d487071632808b6e990846e2e6973.zip | |
Phase 1.2 & 2.1: Skip auto-completion for local_only tasks
Diffstat (limited to 'makima/migrations')
| -rw-r--r-- | makima/migrations/20250127000000_add_local_only.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/makima/migrations/20250127000000_add_local_only.sql b/makima/migrations/20250127000000_add_local_only.sql new file mode 100644 index 0000000..2cd594e --- /dev/null +++ b/makima/migrations/20250127000000_add_local_only.sql @@ -0,0 +1,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'; |
