Aktueller Stand

This commit is contained in:
2026-01-22 22:22:48 +01:00
parent 33e2bc61e2
commit fa5f3808bb
169 changed files with 58567 additions and 25460 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN "passwordResetRequired" BOOLEAN NOT NULL DEFAULT false;

View File

@@ -87,6 +87,7 @@ model User {
password String
role UserRole @default(USER)
isActive Boolean @default(true)
passwordResetRequired Boolean @default(false)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt