mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(stripe): eps, giropay and ideal using stripe (#529)
Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in>
This commit is contained in:
@ -218,7 +218,7 @@ diesel::table! {
|
||||
surcharge_amount -> Nullable<Int8>,
|
||||
tax_amount -> Nullable<Int8>,
|
||||
payment_method_id -> Nullable<Varchar>,
|
||||
payment_method -> Nullable<PaymentMethodType>,
|
||||
payment_method -> Nullable<Varchar>,
|
||||
connector_transaction_id -> Nullable<Varchar>,
|
||||
capture_method -> Nullable<CaptureMethod>,
|
||||
capture_on -> Nullable<Timestamp>,
|
||||
@ -234,8 +234,9 @@ diesel::table! {
|
||||
error_code -> Nullable<Varchar>,
|
||||
payment_token -> Nullable<Varchar>,
|
||||
connector_metadata -> Nullable<Jsonb>,
|
||||
payment_issuer -> Nullable<Varchar>,
|
||||
payment_experience -> Nullable<Varchar>,
|
||||
payment_method_type -> Nullable<Varchar>,
|
||||
payment_method_data -> Nullable<Jsonb>,
|
||||
}
|
||||
}
|
||||
|
||||
@ -290,8 +291,8 @@ diesel::table! {
|
||||
direct_debit_token -> Nullable<Varchar>,
|
||||
created_at -> Timestamp,
|
||||
last_modified -> Timestamp,
|
||||
payment_method -> PaymentMethodType,
|
||||
payment_method_type -> Nullable<PaymentMethodSubType>,
|
||||
payment_method -> Varchar,
|
||||
payment_method_type -> Nullable<Varchar>,
|
||||
payment_method_issuer -> Nullable<Varchar>,
|
||||
payment_method_issuer_code -> Nullable<PaymentMethodIssuerCode>,
|
||||
metadata -> Nullable<Json>,
|
||||
|
||||
Reference in New Issue
Block a user