@adaptware/eagles-db 0.4.8 → 0.4.10

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": "@adaptware/eagles-db",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,7 +22,7 @@ model JobDescription {
22
22
  target_closing_date DateTime?
23
23
  closing_date DateTime?
24
24
 
25
- job_number Int
25
+ job_number Int?
26
26
  job_code String? @unique
27
27
  // Audit fields
28
28
  created_at DateTime @default(now())
@@ -27,7 +27,7 @@ model Organisation {
27
27
  alias String? @unique
28
28
  logo String?
29
29
  org_code String? @unique
30
- jobSequenc Int @default(1)
30
+ job_sequence Int @default(1)
31
31
  applications Application[]
32
32
  user_roles UserRole[]
33
33
  job_descriptions JobDescription[]