fixed the schema file

This commit is contained in:
2025-10-15 16:46:38 +05:30
parent 28af27a15f
commit 30bc803dd3

View File

@@ -2,7 +2,7 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
previewFeatures = ["multiSchema"]
}
@@ -34,6 +34,8 @@ enum UserRole {
USER
ADMIN
HR
@@schema("usr")
}
model Blog {
@@ -148,7 +150,8 @@ model KlcArchive {
tags String[] @default([]) @map("tags")
createdAt DateTime @default(now()) @map("created_at")
updatedAt DateTime @updatedAt @map("updated_at")
deletedAt DateTime? @map("delecase_studies
deletedAt DateTime? @map("deleted_at")
@@map("klc_archive")
@@schema("cnt")
}