feat(M13): add auto_pr field to Product schema + migration

This commit is contained in:
Janpeter Visser 2026-05-01 13:25:37 +02:00
parent 9f31816455
commit a48f17a705
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "products" ADD COLUMN "auto_pr" BOOLEAN NOT NULL DEFAULT false;

View file

@ -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