@javalabs/prisma-client 1.0.8 → 1.0.9

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": "@javalabs/prisma-client",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Shared Prisma client for Tupay microservices",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "manual_payments" ALTER COLUMN "receipt_image_url" SET DATA TYPE TEXT;
@@ -198,7 +198,7 @@ model manual_payments {
198
198
  amount Decimal @db.Decimal(10, 2)
199
199
  currency String @db.VarChar(10)
200
200
  bank_transaction_id String? @db.VarChar(255)
201
- receipt_image_url String? @db.VarChar(255)
201
+ receipt_image_url String? @db.Text
202
202
  notes String?
203
203
  status enum_transaction_status @default(pending)
204
204
  admin_notes String?