fixed the schema file
This commit is contained in:
@@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user