@campus-labs/prisma-client 0.4.3 → 0.4.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 +1 -1
- package/prisma/schema.prisma +1 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -301,6 +301,7 @@ model users {
|
|
|
301
301
|
notification_tokens String[] @db.VarChar(5000)
|
|
302
302
|
points Int @default(0)
|
|
303
303
|
ua_iupi String @db.VarChar(50) @unique
|
|
304
|
+
last_notification_check DateTime @default(now()) @db.Timestamp(6)
|
|
304
305
|
badges_instances badges_instances[]
|
|
305
306
|
evidences evidences[]
|
|
306
307
|
initiative_invitations_initiative_invitations_invitee_idTousers initiative_invitations[] @relation("initiative_invitations_invitee_idTousers")
|