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