chore: bump vendor/scrum4me submodule naar app-main (7bb252c)
De submodule stond 27 commits achter (3c77342, v1.0.0-147), waardoor sync-schema.sh prisma/schema.prisma terugzette naar een versie zonder IDEA_REVIEW_PLAN. Bumpt naar huidige app-main + re-synct het schema; enige inhoudelijke wijziging is het nieuwe User.settings-veld. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d9fa422e34
commit
58f57dbec4
2 changed files with 12 additions and 11 deletions
|
|
@ -152,6 +152,7 @@ model User {
|
||||||
active_product Product? @relation("UserActiveProduct", fields: [active_product_id], references: [id], onDelete: SetNull)
|
active_product Product? @relation("UserActiveProduct", fields: [active_product_id], references: [id], onDelete: SetNull)
|
||||||
idea_code_counter Int @default(0)
|
idea_code_counter Int @default(0)
|
||||||
min_quota_pct Int @default(20)
|
min_quota_pct Int @default(20)
|
||||||
|
settings Json @default("{}")
|
||||||
created_at DateTime @default(now())
|
created_at DateTime @default(now())
|
||||||
updated_at DateTime @updatedAt
|
updated_at DateTime @updatedAt
|
||||||
roles UserRole[]
|
roles UserRole[]
|
||||||
|
|
@ -515,18 +516,18 @@ model ProductMember {
|
||||||
}
|
}
|
||||||
|
|
||||||
model Idea {
|
model Idea {
|
||||||
id String @id @default(cuid())
|
id String @id @default(cuid())
|
||||||
user User @relation(fields: [user_id], references: [id], onDelete: Cascade)
|
user User @relation(fields: [user_id], references: [id], onDelete: Cascade)
|
||||||
user_id String
|
user_id String
|
||||||
product Product? @relation(fields: [product_id], references: [id], onDelete: SetNull)
|
product Product? @relation(fields: [product_id], references: [id], onDelete: SetNull)
|
||||||
product_id String?
|
product_id String?
|
||||||
code String @db.VarChar(30)
|
code String @db.VarChar(30)
|
||||||
title String
|
title String
|
||||||
description String? @db.VarChar(4000)
|
description String? @db.VarChar(4000)
|
||||||
grill_md String? @db.Text
|
grill_md String? @db.Text
|
||||||
plan_md String? @db.Text
|
plan_md String? @db.Text
|
||||||
plan_review_log Json? // ReviewLog from orchestrator
|
plan_review_log Json? // ReviewLog from orchestrator (all rounds, convergence metrics, approval status)
|
||||||
reviewed_at DateTime?
|
reviewed_at DateTime? // When last reviewed
|
||||||
pbi Pbi? @relation(fields: [pbi_id], references: [id], onDelete: SetNull)
|
pbi Pbi? @relation(fields: [pbi_id], references: [id], onDelete: SetNull)
|
||||||
pbi_id String? @unique
|
pbi_id String? @unique
|
||||||
status IdeaStatus @default(DRAFT)
|
status IdeaStatus @default(DRAFT)
|
||||||
|
|
|
||||||
2
vendor/scrum4me
vendored
2
vendor/scrum4me
vendored
|
|
@ -1 +1 @@
|
||||||
Subproject commit 3c773421dacaf506bf35a8270249822cf509ccf3
|
Subproject commit 7bb252c528d810584bcb46a56cff3d26ebf392ff
|
||||||
Loading…
Add table
Add a link
Reference in a new issue