@campus-labs/prisma-client 0.4.1 → 0.4.2

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.1",
3
+ "version": "0.4.2",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -117,6 +117,7 @@ model initiatives {
117
117
  deleted_at DateTime? @db.Timestamp(6)
118
118
  location Json?
119
119
  isPresential Boolean
120
+ volunteers_allowed Boolean @default(false)
120
121
  badges badges[]
121
122
  badges_instances badges_instances[]
122
123
  initiative_invitations initiative_invitations[]
@@ -290,7 +291,7 @@ model users {
290
291
  is_verified Boolean @default(false)
291
292
  is_onboarding_done Boolean @default(false)
292
293
  role_platform_id Int @default(2)
293
- is_notifications_active Boolean @default(true)
294
+ is_notifications_active Boolean @default(false)
294
295
  is_email_active Boolean @default(true)
295
296
  created_at DateTime @default(now()) @db.Timestamp(6)
296
297
  updated_at DateTime @default(now()) @db.Timestamp(6)