"feat: add EventItem, EventReview models with seed data and mock files, update User and Event schemas"

This commit is contained in:
louiscklaw
2025-06-03 15:29:05 +08:00
parent a0a4ffcb4e
commit 24920fb313
52 changed files with 2140 additions and 56 deletions

View File

@@ -9,16 +9,29 @@ async function user() {
email: 'alice@prisma.io',
name: 'Alice',
password: 'Aa12345678',
emailVerified: new Date(),
},
});
const bob = await prisma.user.upsert({
await prisma.user.upsert({
where: { email: 'demo@minimals.cc' },
update: {},
create: {
email: 'demo@minimals.cc',
name: 'Demo',
password: '@2Minimal',
emailVerified: new Date(),
},
});
await prisma.user.upsert({
where: { email: 'bob@prisma.io' },
update: {},
create: {
email: 'bob@prisma.io',
name: 'Bob',
password: 'Aa12345678',
emailVerified: new Date(),
},
});
console.log('seed user done');