@danielcok17/prisma-db 1.20.12 → 1.20.13

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.20.12",
3
+ "version": "1.20.13",
4
4
  "description": "Shared Prisma schema for Legal AI applications",
5
5
  "repository": {
6
6
  "type": "git",
package/prisma/app.prisma CHANGED
@@ -350,6 +350,7 @@ model MessageFile {
350
350
  convertedFileName String?
351
351
  convertedFileType String?
352
352
  extractedText String?
353
+ positionData Json? // Serialized TextPosition[] for coordinate-based citation highlighting
353
354
  uploadedAt DateTime @default(now())
354
355
  answer Answer? @relation(fields: [answerId], references: [id], onDelete: Cascade)
355
356
 
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "MessageFile" ADD COLUMN "positionData" JSONB;