From 77f3ff4cc9c6e75a8478026bc4ac6dd89078ea9d Mon Sep 17 00:00:00 2001 From: PokeJofeJr4th Date: Sun, 15 Sep 2024 14:23:22 -0400 Subject: [PATCH] Comment out session seed data --- next/prisma/seed.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/next/prisma/seed.ts b/next/prisma/seed.ts index 5ce053d4..f086850a 100644 --- a/next/prisma/seed.ts +++ b/next/prisma/seed.ts @@ -571,9 +571,9 @@ async function main() { await seedHourBlock(); await seedSchedule(); await seedGoLinks(); - await seedAccount(); - await seedSession(); - await seedVerificationToken(); + // await seedAccount(); + // await seedSession(); + // await seedVerificationToken(); } catch (e) { console.error(e); }