@javalabs/prisma-client 1.0.22 → 1.0.24
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
package/prisma/schema.prisma
CHANGED
|
@@ -398,6 +398,7 @@ model transactions {
|
|
|
398
398
|
fixed_fee Decimal? @default(0) @db.Decimal(10, 2)
|
|
399
399
|
total_commission_fee Decimal? @default(0) @db.Decimal(10, 2)
|
|
400
400
|
total_operation Decimal? @default(0) @db.Decimal(10, 2)
|
|
401
|
+
amount_received Decimal? @db.Decimal(10, 2)
|
|
401
402
|
toku toku?
|
|
402
403
|
account_type enum_account_type?
|
|
403
404
|
daily_logs daily_logs[]
|