@campus-labs/prisma-client 0.8.0 → 0.8.1

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.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -512,7 +512,7 @@ model role_user_initiative_update {
512
512
  initiative_id Int
513
513
  new_role_initiative_id Int
514
514
  inviter_id String? @db.VarChar(50)
515
- status String @db.VarChar(20)
515
+ status String @db.VarChar(20) @default("PENDING")
516
516
  created_at DateTime @default(now()) @db.Timestamp(6)
517
517
  updated_at DateTime @default(now()) @db.Timestamp(6)
518
518
  deleted_at DateTime? @db.Timestamp(6)