From be6d26c7570e4fa9832cd69db1b2ac03df3efbad Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Tue, 2 Apr 2024 11:15:01 -0500 Subject: [PATCH] fix(api): add msUsername index to prisma (#54187) --- api/prisma/schema.prisma | 1 + 1 file changed, 1 insertion(+) diff --git a/api/prisma/schema.prisma b/api/prisma/schema.prisma index c93da9b1fff..f9f055d6480 100644 --- a/api/prisma/schema.prisma +++ b/api/prisma/schema.prisma @@ -208,6 +208,7 @@ model MsUsername { msUsername String @@index([userId, id], map: "userId_1__id_1") + @@index([msUsername], map: "msUsername_1") } model Exam {