@juliobrim/prisma-shared 1.0.28 → 1.0.29

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.
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "public"."operator" ADD COLUMN "pin" TEXT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juliobrim/prisma-shared",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "Schema Prisma compartilhado entre projetos Sabcon",
5
5
  "main": "schema.prisma",
6
6
  "files": [
package/schema.prisma CHANGED
@@ -448,6 +448,7 @@ model Operator {
448
448
  profileImgUrl String?
449
449
  stringfiedProfileImgUrl String?
450
450
  operatorRoleId String?
451
+ pin String?
451
452
  isDeleted Boolean @default(false)
452
453
  tenantId String?
453
454
  deviceOperators DeviceOperator[]