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).
5 lines
255 B
SQL
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';
|