@cowris/paymentdb-client 1.0.5 → 1.0.6

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": "@cowris/paymentdb-client",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "This is a Prisma Client package for the Cowris PaymentDB. It provides a simple interface to interact with the Payment database, allowing you to perform CRUD operations on payment and transaction data and related tables.",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -13,7 +13,7 @@ model Transaction {
13
13
  status String
14
14
  metadata Json?
15
15
  provider_id String?
16
- reference_id String?
16
+ reference_id String @unique
17
17
  created_at DateTime @default(now())
18
18
  upadated_at DateTime @default(now())
19
19