This website requires JavaScript.
Explore
Help
Register
Sign In
letsbe
/
MOPC-App
Watch
1
Star
0
Fork
You've already forked MOPC-App
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
845554fdb8
MOPC-App
/
prisma
/
migrations
/
20260211120000_add_award_vo...
/
migration.sql
3 lines
96 B
MySQL
Raw
Normal View
History
Unescape
Escape
Competition/Round architecture: full platform rewrite (Phases 1-9) Replace Pipeline/Stage system with Competition/Round architecture. New schema: Competition, Round (7 types), JuryGroup, AssignmentPolicy, ProjectRoundState, DeliberationSession, ResultLock, SubmissionWindow. New services: round-engine, round-assignment, deliberation, result-lock, submission-manager, competition-context, ai-prompt-guard. Full admin/jury/applicant/mentor UI rewrite. AI prompt hardening with structured prompts, retry logic, and injection detection. All legacy pipeline/stage code removed. 4 new migrations + seed aligned. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 23:04:15 +01:00
-- CreateIndex
CREATE
INDEX
"
AwardVote_awardId_userId_idx
"
ON
"
AwardVote
"
(
"
awardId
"
,
"
userId
"
)
;