feat(M13): add auto_pr field to Product schema + migration
This commit is contained in:
parent
9f31816455
commit
a48f17a705
2 changed files with 4 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "products" ADD COLUMN "auto_pr" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
|
@ -131,6 +131,7 @@ model Product {
|
|||
description String?
|
||||
repo_url String?
|
||||
definition_of_done String
|
||||
auto_pr Boolean @default(false)
|
||||
archived Boolean @default(false)
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
|
@ -274,6 +275,7 @@ model ClaudeJob {
|
|||
branch String?
|
||||
summary String?
|
||||
error String?
|
||||
retry_count Int @default(0)
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue