careerty-prism 1.0.22 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +9 -9
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -568,15 +568,15 @@ model MentorAvailablitySlot {
|
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
model MnCategory {
|
|
571
|
-
id
|
|
572
|
-
name
|
|
573
|
-
description
|
|
574
|
-
icon
|
|
575
|
-
status
|
|
576
|
-
permalink
|
|
577
|
-
isDeleted
|
|
578
|
-
|
|
579
|
-
Mentor
|
|
571
|
+
id Int @id @default(autoincrement())
|
|
572
|
+
name String
|
|
573
|
+
description String @db.LongText
|
|
574
|
+
icon String
|
|
575
|
+
status Boolean @default(false)
|
|
576
|
+
permalink String @unique
|
|
577
|
+
isDeleted Boolean @default(false)
|
|
578
|
+
translations MnCategoryTranlstion[]
|
|
579
|
+
Mentor Mentor[]
|
|
580
580
|
}
|
|
581
581
|
|
|
582
582
|
model MnCategoryTranlstion {
|