@campus-labs/prisma-client 0.2.1 → 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 +1 -1
- package/prisma/schema.prisma +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -329,7 +329,7 @@ model user_to_user {
|
|
|
329
329
|
model user_initiative {
|
|
330
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)
|
|
331
331
|
initiative_id Int
|
|
332
|
-
role_initiative_id Int @default(
|
|
332
|
+
role_initiative_id Int @default(3)
|
|
333
333
|
is_creator Boolean @default(false)
|
|
334
334
|
created_at DateTime @default(now()) @db.Timestamp(6)
|
|
335
335
|
updated_at DateTime @default(now()) @db.Timestamp(6)
|