Compare commits
1 commit
main
...
feat/agent
| Author | SHA1 | Date | |
|---|---|---|---|
| c82a7b1c06 |
2 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
-- AlterTable: optional repo_url override on Task. Used when an MCP-server
|
||||
-- task is tracked under a different product's PBI (cross-repo support).
|
||||
-- Falls back to product.repo_url when NULL.
|
||||
ALTER TABLE "tasks" ADD COLUMN "repo_url" TEXT;
|
||||
|
|
@ -254,6 +254,11 @@ model Task {
|
|||
status TaskStatus @default(TO_DO)
|
||||
verify_only Boolean @default(false)
|
||||
verify_required VerifyRequired @default(ALIGNED_OR_PARTIAL)
|
||||
// Override product.repo_url for branch/worktree/push purposes. Set when
|
||||
// a task targets a different repo than its parent product (e.g. an
|
||||
// MCP-server task tracked under the main product's PBI). Falls back to
|
||||
// product.repo_url when null.
|
||||
repo_url String?
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
claude_questions ClaudeQuestion[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue