procbay-schema 1.0.10 → 1.0.11

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.10",
3
+ "version": "1.0.11",
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 "export_logs" ALTER COLUMN "expires_at" SET DEFAULT NOW() + INTERVAL '7 days';
@@ -2476,7 +2476,7 @@ model RequestedCatalogue {
2476
2476
  deleted_at DateTime? @db.Timestamptz(6)
2477
2477
  deleted_by Int?
2478
2478
  requested_catalogue_items RequestedCatalogueItem[]
2479
- requested_catalogue_vendor RequestedCatalogueVendor[]
2479
+ requested_catalogue_vendors RequestedCatalogueVendor[]
2480
2480
 
2481
2481
  @@map("requested_catalogues")
2482
2482
  }