@campus-labs/prisma-client 0.2.2 → 0.2.4
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 +3 -3
- package/prisma/schema.prisma +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@campus-labs/prisma-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^24.0.1",
|
|
31
31
|
"dotenv-cli": "^8.0.0",
|
|
32
|
-
"prisma": "
|
|
32
|
+
"prisma": "6.9.0",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"typescript": "^5.8.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@prisma/client": "
|
|
37
|
+
"@prisma/client": "6.11.1"
|
|
38
38
|
}
|
|
39
39
|
}
|
package/prisma/schema.prisma
CHANGED
|
@@ -295,6 +295,7 @@ model users {
|
|
|
295
295
|
deleted_at DateTime? @db.Timestamp(6)
|
|
296
296
|
notification_tokens String[] @db.VarChar(5000)
|
|
297
297
|
points Int @default(0)
|
|
298
|
+
ua_iupi String @db.VarChar(50) @unique
|
|
298
299
|
badges_instances badges_instances[]
|
|
299
300
|
evidences evidences[]
|
|
300
301
|
initiative_invitations_initiative_invitations_invitee_idTousers initiative_invitations[] @relation("initiative_invitations_invitee_idTousers")
|