@campus-labs/prisma-client 0.4.2 → 0.4.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campus-labs/prisma-client",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -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("PENDING") @db.VarChar(20)
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)