@campus-labs/prisma-client 0.4.2 → 0.4.4
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 +4 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -215,7 +215,7 @@ model soft_skill_instance {
|
|
|
215
215
|
img_inactive Json
|
|
216
216
|
description String @db.VarChar(1000)
|
|
217
217
|
points Int
|
|
218
|
-
status String @default("
|
|
218
|
+
status String @default("APPROVED") @db.VarChar(20)
|
|
219
219
|
votes Int @default(0)
|
|
220
220
|
soft_skill_id Int?
|
|
221
221
|
initiative_id Int?
|
|
@@ -290,6 +290,8 @@ model users {
|
|
|
290
290
|
is_initiatives_private Boolean @default(false)
|
|
291
291
|
is_verified Boolean @default(false)
|
|
292
292
|
is_onboarding_done Boolean @default(false)
|
|
293
|
+
is_softskill_onboarding_done Boolean @default(false)
|
|
294
|
+
is_give_badge_onboarding_done Boolean @default(false)
|
|
293
295
|
role_platform_id Int @default(2)
|
|
294
296
|
is_notifications_active Boolean @default(false)
|
|
295
297
|
is_email_active Boolean @default(true)
|
|
@@ -299,6 +301,7 @@ model users {
|
|
|
299
301
|
notification_tokens String[] @db.VarChar(5000)
|
|
300
302
|
points Int @default(0)
|
|
301
303
|
ua_iupi String @db.VarChar(50) @unique
|
|
304
|
+
last_notification_check DateTime @default(now()) @db.Timestamp(6)
|
|
302
305
|
badges_instances badges_instances[]
|
|
303
306
|
evidences evidences[]
|
|
304
307
|
initiative_invitations_initiative_invitations_invitee_idTousers initiative_invitations[] @relation("initiative_invitations_invitee_idTousers")
|