Files
MOPC-Portal/prisma/cleanup-dummy.ts
Matt fd5e5222da Decouple projects from rounds with RoundProject join table
Projects now exist at the program level instead of being locked to a
single round. A new RoundProject join table enables many-to-many
relationships with per-round status tracking. Rounds have sortOrder
for configurable progression paths.

- Add RoundProject model, programId on Project, sortOrder on Round
- Migration preserves existing data (roundId -> RoundProject entries)
- Update all routers to query through RoundProject join
- Add assign/remove/advance/reorder round endpoints
- Add Assign, Advance, Remove Projects dialogs on round detail page
- Add round reorder controls (up/down arrows) on rounds list
- Show all rounds on project detail page

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 22:33:55 +01:00

58 lines
1.6 KiB
TypeScript

import { PrismaClient } from '@prisma/client'
const prisma = new PrismaClient()
async function cleanup() {
console.log('Cleaning up dummy data...\n')
// Find and delete the dummy round
const dummyRound = await prisma.round.findFirst({
where: { slug: 'round-1-2026' },
include: { roundProjects: { include: { project: true } } }
})
if (dummyRound) {
console.log(`Found dummy round: ${dummyRound.name}`)
console.log(`Projects in round: ${dummyRound.roundProjects.length}`)
// Get project IDs to delete
const projectIds = dummyRound.roundProjects.map(rp => rp.projectId)
// Delete team members for these projects
if (projectIds.length > 0) {
const teamDeleted = await prisma.teamMember.deleteMany({
where: { projectId: { in: projectIds } }
})
console.log(`Deleted ${teamDeleted.count} team members`)
// Delete round-project associations
await prisma.roundProject.deleteMany({
where: { roundId: dummyRound.id }
})
console.log(`Deleted round-project associations`)
// Delete the projects
const projDeleted = await prisma.project.deleteMany({
where: { id: { in: projectIds } }
})
console.log(`Deleted ${projDeleted.count} dummy projects`)
}
// Delete the round
await prisma.round.delete({ where: { id: dummyRound.id } })
console.log('Deleted dummy round')
} else {
console.log('No dummy round found')
}
console.log('\nCleanup complete!')
}
cleanup()
.then(() => prisma.$disconnect())
.catch(async (e) => {
console.error(e)
await prisma.$disconnect()
process.exit(1)
})