@campus-labs/prisma-client 0.2.0 → 0.2.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.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -84,6 +84,7 @@ model initiative_invitations {
84
84
  invitee_id String @db.VarChar(50)
85
85
  initiative_id Int
86
86
  status String @default("PENDING") @db.VarChar(20)
87
+ role_initiative_id Int @default(3)
87
88
  created_at DateTime @default(now()) @db.Timestamp(6)
88
89
  updated_at DateTime @default(now()) @db.Timestamp(6)
89
90
  deleted_at DateTime? @db.Timestamp(6)
@@ -328,7 +329,7 @@ model user_to_user {
328
329
  model user_initiative {
329
330
  user_id String @default("1") @db.VarChar(50) // Default user for testing (depois colocar o id do nea, para se o administrador da iniciativa for apagado, atribui direto ao nea)
330
331
  initiative_id Int
331
- role_initiative_id Int @default(4)
332
+ role_initiative_id Int @default(3)
332
333
  is_creator Boolean @default(false)
333
334
  created_at DateTime @default(now()) @db.Timestamp(6)
334
335
  updated_at DateTime @default(now()) @db.Timestamp(6)