From a75ae873f652487878cb91dcf58514a3f3fe0288 Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 18 Jan 2026 17:08:29 +0000 Subject: Fixup: Version phaseguard --- makima/migrations/20250119000000_add_phase_guard.sql | 9 --------- makima/migrations/20250120000000_add_phase_guard.sql | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 makima/migrations/20250119000000_add_phase_guard.sql create mode 100644 makima/migrations/20250120000000_add_phase_guard.sql diff --git a/makima/migrations/20250119000000_add_phase_guard.sql b/makima/migrations/20250119000000_add_phase_guard.sql deleted file mode 100644 index dfa642a..0000000 --- a/makima/migrations/20250119000000_add_phase_guard.sql +++ /dev/null @@ -1,9 +0,0 @@ --- Add phase_guard column to contracts table --- When enabled, the supervisor will wait for user confirmation before progressing to the next phase. --- This allows users to review and potentially amend phase outputs (plans, requirements, etc.) --- before the contract continues to the next phase. - -ALTER TABLE contracts -ADD COLUMN IF NOT EXISTS phase_guard BOOLEAN NOT NULL DEFAULT FALSE; - -COMMENT ON COLUMN contracts.phase_guard IS 'Whether to wait for user confirmation before progressing to the next phase'; diff --git a/makima/migrations/20250120000000_add_phase_guard.sql b/makima/migrations/20250120000000_add_phase_guard.sql new file mode 100644 index 0000000..dfa642a --- /dev/null +++ b/makima/migrations/20250120000000_add_phase_guard.sql @@ -0,0 +1,9 @@ +-- Add phase_guard column to contracts table +-- When enabled, the supervisor will wait for user confirmation before progressing to the next phase. +-- This allows users to review and potentially amend phase outputs (plans, requirements, etc.) +-- before the contract continues to the next phase. + +ALTER TABLE contracts +ADD COLUMN IF NOT EXISTS phase_guard BOOLEAN NOT NULL DEFAULT FALSE; + +COMMENT ON COLUMN contracts.phase_guard IS 'Whether to wait for user confirmation before progressing to the next phase'; -- cgit v1.2.3