Files
Codewalkers/drizzle/0022_branch_refactor.sql
Lukas May 0407f05332 refactor: Rename agent modes breakdown→plan, decompose→detail
Full rename across the codebase for clarity:
- breakdown (initiative→phases) is now "plan"
- decompose (phase→tasks) is now "detail"

Updates schema enums, TypeScript types, events, prompts, output handler,
tRPC procedures, CLI commands, frontend components, tests, and docs.
Also fixes 0022 migration multi-statement issue (adds statement-breakpoint markers).
2026-02-10 10:51:42 +01:00

5 lines
255 B
SQL

-- Rename merge_target → branch on initiatives, add default_branch to projects
ALTER TABLE `initiatives` RENAME COLUMN `merge_target` TO `branch`;
--> statement-breakpoint
ALTER TABLE `projects` ADD COLUMN `default_branch` TEXT NOT NULL DEFAULT 'main';