update prisma

This commit is contained in:
root 2025-05-25 15:45:03 +02:00
parent e781de64a1
commit 323a846a4b

View File

@ -0,0 +1,11 @@
-- AlterTable
ALTER TABLE "Account" ADD COLUMN "refresh_expires_in" INTEGER;
-- AlterTable
ALTER TABLE "User" ADD COLUMN "isLocked" BOOLEAN NOT NULL DEFAULT false;
-- CreateIndex
CREATE INDEX "Account_userId_idx" ON "Account"("userId");
-- CreateIndex
CREATE INDEX "Session_userId_idx" ON "Session"("userId");