@campus-labs/prisma-client 0.12.1 → 0.12.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 +1 -1
- package/prisma/schema.prisma +1 -3
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -25,8 +25,6 @@ model badges {
|
|
|
25
25
|
description String? @db.VarChar(1000)
|
|
26
26
|
condition String @db.VarChar(1000)
|
|
27
27
|
img Json
|
|
28
|
-
is_draft Boolean @default(true)
|
|
29
|
-
is_model Boolean @default(false)
|
|
30
28
|
points Int
|
|
31
29
|
fields Json?
|
|
32
30
|
moment_id Int?
|
|
@@ -396,7 +394,7 @@ model user_initiative {
|
|
|
396
394
|
initiative_id Int
|
|
397
395
|
role_initiative_id Int @default(3)
|
|
398
396
|
is_creator Boolean @default(false)
|
|
399
|
-
is_initiative_ranking_active Boolean @default(
|
|
397
|
+
is_initiative_ranking_active Boolean @default(true)
|
|
400
398
|
created_at DateTime @default(now()) @db.Timestamp(6)
|
|
401
399
|
updated_at DateTime @default(now()) @db.Timestamp(6)
|
|
402
400
|
deleted_at DateTime? @db.Timestamp(6)
|