procbay-schema 1.0.74 → 1.0.76

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": "procbay-schema",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "A set of utilities for managing Prisma database schemas, seeding, and maintenance operations for the Procure-to-Pay system",
5
5
  "main": "src/prisma/index.js",
6
6
  "type": "module",
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "users" ADD COLUMN "contract_role" TEXT;
@@ -74,6 +74,7 @@ model User {
74
74
  deleted_at DateTime? @db.Timestamptz(6)
75
75
  deleted_by Int?
76
76
  user_environment EnvironmentEnum @default(PRODUCTION)
77
+ contract_role String?
77
78
  user_roles UserRole[]
78
79
  user_department UserDepartment[]
79
80
  approval_hierarchy ApprovalHierarchy[]