From 4162e2b3a58a1f2567f324bfd5fb46802b5cf43e Mon Sep 17 00:00:00 2001 From: Kevsl Date: Fri, 14 Jun 2024 15:52:09 +0200 Subject: [PATCH] added token sell to bank --- prisma/seed.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/prisma/seed.ts b/prisma/seed.ts index 00267b0..5ce421e 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -1,8 +1,7 @@ import { PrismaClient } from '@prisma/client'; +const prisma = new PrismaClient(); async function main() { - const prisma = new PrismaClient(); - await this.prisma.role.create({ name: 'user', });