@campus-labs/prisma-client 0.12.7 → 0.12.9
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
|
@@ -337,6 +337,7 @@ model users {
|
|
|
337
337
|
updated_at DateTime @default(now()) @db.Timestamp(6)
|
|
338
338
|
deleted_at DateTime? @db.Timestamp(6)
|
|
339
339
|
notification_tokens String[] @db.VarChar(5000)
|
|
340
|
+
linkedin_token String? @db.VarChar(500)
|
|
340
341
|
points Int @default(0)
|
|
341
342
|
ua_iupi String @unique @db.VarChar(50)
|
|
342
343
|
last_notification_check DateTime @default(now()) @db.Timestamp(6)
|