@campus-labs/prisma-client 0.12.6 → 0.12.7

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.12.6",
3
+ "version": "0.12.7",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -247,7 +247,6 @@ model soft_skill_instance {
247
247
  description String @db.VarChar(1000)
248
248
  points Int?
249
249
  status String @default("APPROVED") @db.VarChar(20)
250
- votes Int @default(0)
251
250
  soft_skill_id Int?
252
251
  initiative_id Int?
253
252
  user_id String? @db.VarChar(50)
@@ -263,7 +262,6 @@ model soft_skill_instance {
263
262
  @@index([initiative_id, status], map: "idx_soft_skill_instance_initiative_status")
264
263
  @@index([soft_skill_id, initiative_id], map: "idx_soft_skill_instance_soft_skill_init")
265
264
  @@index([user_id, initiative_id], map: "idx_soft_skill_instance_user_init")
266
- @@index([votes(sort: Desc)], map: "idx_soft_skill_instance_votes")
267
265
  }
268
266
 
269
267
  model soft_skills {