refactor(api_models): shrink Amount (#140)

This commit is contained in:
kos-for-juspay
2022-12-14 14:03:30 +01:00
committed by GitHub
parent 8b8ff8188f
commit a4d64eba7c
25 changed files with 149 additions and 114 deletions

View File

@ -129,9 +129,9 @@ diesel::table! {
network_transaction_id -> Nullable<Varchar>,
previous_transaction_id -> Nullable<Varchar>,
created_at -> Timestamp,
mandate_amount -> Nullable<Int4>,
mandate_amount -> Nullable<Int8>,
mandate_currency -> Nullable<Currency>,
amount_captured -> Nullable<Int4>,
amount_captured -> Nullable<Int8>,
connector -> Varchar,
connector_mandate_id -> Nullable<Varchar>,
}
@ -189,14 +189,14 @@ diesel::table! {
merchant_id -> Varchar,
txn_id -> Varchar,
status -> AttemptStatus,
amount -> Int4,
amount -> Int8,
currency -> Nullable<Currency>,
save_to_locker -> Nullable<Bool>,
connector -> Nullable<Varchar>,
error_message -> Nullable<Text>,
offer_amount -> Nullable<Int4>,
surcharge_amount -> Nullable<Int4>,
tax_amount -> Nullable<Int4>,
offer_amount -> Nullable<Int8>,
surcharge_amount -> Nullable<Int8>,
tax_amount -> Nullable<Int8>,
payment_method_id -> Nullable<Varchar>,
payment_method -> Nullable<PaymentMethodType>,
payment_flow -> Nullable<PaymentFlow>,
@ -210,7 +210,7 @@ diesel::table! {
modified_at -> Timestamp,
last_synced -> Nullable<Timestamp>,
cancellation_reason -> Nullable<Varchar>,
amount_to_capture -> Nullable<Int4>,
amount_to_capture -> Nullable<Int8>,
mandate_id -> Nullable<Varchar>,
browser_info -> Nullable<Jsonb>,
error_code -> Nullable<Varchar>,
@ -226,9 +226,9 @@ diesel::table! {
payment_id -> Varchar,
merchant_id -> Varchar,
status -> IntentStatus,
amount -> Int4,
amount -> Int8,
currency -> Nullable<Currency>,
amount_captured -> Nullable<Int4>,
amount_captured -> Nullable<Int8>,
customer_id -> Nullable<Varchar>,
description -> Nullable<Varchar>,
return_url -> Nullable<Varchar>,
@ -312,9 +312,9 @@ diesel::table! {
pg_refund_id -> Nullable<Varchar>,
external_reference_id -> Nullable<Varchar>,
refund_type -> RefundType,
total_amount -> Int4,
total_amount -> Int8,
currency -> Currency,
refund_amount -> Int4,
refund_amount -> Int8,
refund_status -> RefundStatus,
sent_to_gateway -> Bool,
refund_error_message -> Nullable<Text>,