@danielcok17/prisma-db 1.15.0 → 1.15.1

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": "@danielcok17/prisma-db",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "Shared Prisma schema for Legal AI applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/prisma/app.prisma CHANGED
@@ -1040,6 +1040,8 @@ model IngestedDocument {
1040
1040
  embeddingCost Float? // EUR
1041
1041
  qdrantDocId String? @unique // doc_id used in Qdrant vector payloads
1042
1042
  folderId String? // Optional folder association
1043
+ storagePath String? // Local filesystem path (dev/staging)
1044
+ storageUrl String? // Cloud storage URL (prod — S3/DigitalOcean Spaces)
1043
1045
  error String?
1044
1046
  createdAt DateTime @default(now())
1045
1047
  updatedAt DateTime @updatedAt
@@ -0,0 +1,3 @@
1
+ -- AlterTable
2
+ ALTER TABLE "IngestedDocument" ADD COLUMN "storagePath" TEXT;
3
+ ALTER TABLE "IngestedDocument" ADD COLUMN "storageUrl" TEXT;