-
Notifications
You must be signed in to change notification settings - Fork 6
feat(PM-2540): added ai workflow id to default reviewer #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| /* | ||
| Warnings: | ||
| - You are about to drop the column `isAIReviewer` on the `DefaultChallengeReviewer` table. All the data in the column will be lost. | ||
| */ | ||
| -- AlterTable | ||
| ALTER TABLE "DefaultChallengeReviewer" DROP COLUMN "isAIReviewer", | ||
| ADD COLUMN "aiWorkflowId" VARCHAR(14), | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| ALTER COLUMN "scorecardId" DROP NOT NULL; | ||
hentrymartin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -649,7 +649,7 @@ model DefaultChallengeReviewer { | |
| trackId String | ||
| timelineTemplateId String? | ||
| // Reviewer configuration (mirrors ChallengeReviewer) | ||
| scorecardId String | ||
| scorecardId String? | ||
hentrymartin marked this conversation as resolved.
Show resolved
Hide resolved
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kkartunov @jmgasper fyi, I am making scorecardId field nullable as default AI reviewers can be created without a scorecard. |
||
| isMemberReview Boolean | ||
| memberReviewerCount Int? | ||
| phaseName String | ||
|
|
@@ -659,7 +659,7 @@ model DefaultChallengeReviewer { | |
| baseCoefficient Float? | ||
| incrementalCoefficient Float? | ||
| opportunityType ReviewOpportunityTypeEnum? | ||
| isAIReviewer Boolean? | ||
| aiWorkflowId String? @db.VarChar(14) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
| shouldOpenOpportunity Boolean @default(true) | ||
|
|
||
| // Relations | ||
|
|
@@ -724,4 +724,4 @@ model TimelineTemplatePhase { | |
|
|
||
| @@index([timelineTemplateId]) | ||
| @@index([timelineTemplateId, phaseId]) | ||
| } | ||
| } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [💡 |
||
Uh oh!
There was an error while loading. Please reload this page.