diff --git a/prisma/package.json b/prisma/package.json index 25c844d0..d9c7b7f7 100644 --- a/prisma/package.json +++ b/prisma/package.json @@ -1,6 +1,6 @@ { "name": "vrt-migration", - "version": "1.1.0", + "version": "1.1.3", "description": "", "author": "", "private": true, diff --git a/prisma/seed.ts b/prisma/seed.ts index d0456624..1ca933fc 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -3,7 +3,7 @@ import uuidAPIKey from 'uuid-apikey'; import { genSalt, hash } from 'bcryptjs'; const prisma = new PrismaClient({ - log: ['query'], + // log: ['query'], }); async function seed() { @@ -21,7 +21,7 @@ async function createDefaultUser() { const userList = await prisma.user.findMany(); console.log(userList); if (userList.length === 0) { - const defaultEmail = 'visual-regression-tracker1@example.com'; + const defaultEmail = 'visual-regression-tracker@example.com'; const defaultPassword = '123456'; const salt = await genSalt(10); await prisma.user