chore: sync VerifyResult enum + verify_only + verify_result from main Scrum4Me schema
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
1e264ed521
commit
24e933fc2f
1 changed files with 9 additions and 0 deletions
|
|
@ -57,6 +57,13 @@ enum SprintStatus {
|
|||
COMPLETED
|
||||
}
|
||||
|
||||
enum VerifyResult {
|
||||
ALIGNED
|
||||
PARTIAL
|
||||
EMPTY
|
||||
DIVERGENT
|
||||
}
|
||||
|
||||
model User {
|
||||
id String @id @default(cuid())
|
||||
username String @unique
|
||||
|
|
@ -232,6 +239,7 @@ model Task {
|
|||
priority Int
|
||||
sort_order Float
|
||||
status TaskStatus @default(TO_DO)
|
||||
verify_only Boolean @default(false)
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
claude_questions ClaudeQuestion[]
|
||||
|
|
@ -261,6 +269,7 @@ model ClaudeJob {
|
|||
branch String?
|
||||
summary String?
|
||||
error String?
|
||||
verify_result VerifyResult?
|
||||
created_at DateTime @default(now())
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue