@campus-labs/prisma-client 0.4.0 → 0.4.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.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -71,7 +71,8 @@ model evidences {
71
71
  id Int @id @default(autoincrement())
72
72
  user_id String @db.VarChar(50)
73
73
  badge_instance_id Int?
74
- evidence Json
74
+ notes String? @db.VarChar(500)
75
+ evidence Json?
75
76
  created_at DateTime @default(now()) @db.Timestamp(6)
76
77
  updated_at DateTime @default(now()) @db.Timestamp(6)
77
78
  deleted_at DateTime? @db.Timestamp(6)