mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
feat: multiple connector account support for the same country (#816)
Co-authored-by: Manoj Ghorela <118727120+manoj-juspay@users.noreply.github.com> Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
@ -222,6 +222,7 @@ diesel::table! {
|
||||
locker_id -> Nullable<Varchar>,
|
||||
metadata -> Nullable<Jsonb>,
|
||||
routing_algorithm -> Nullable<Json>,
|
||||
primary_business_details -> Json,
|
||||
api_key -> Nullable<Varchar>,
|
||||
}
|
||||
}
|
||||
@ -241,6 +242,10 @@ diesel::table! {
|
||||
payment_methods_enabled -> Nullable<Array<Nullable<Json>>>,
|
||||
connector_type -> ConnectorType,
|
||||
metadata -> Nullable<Jsonb>,
|
||||
connector_label -> Varchar,
|
||||
business_country -> CountryCode,
|
||||
business_label -> Varchar,
|
||||
business_sub_label -> Nullable<Varchar>,
|
||||
}
|
||||
}
|
||||
|
||||
@ -282,6 +287,7 @@ diesel::table! {
|
||||
payment_experience -> Nullable<Varchar>,
|
||||
payment_method_type -> Nullable<Varchar>,
|
||||
payment_method_data -> Nullable<Jsonb>,
|
||||
business_sub_label -> Nullable<Varchar>,
|
||||
}
|
||||
}
|
||||
|
||||
@ -313,6 +319,8 @@ diesel::table! {
|
||||
off_session -> Nullable<Bool>,
|
||||
client_secret -> Nullable<Varchar>,
|
||||
active_attempt_id -> Varchar,
|
||||
business_country -> CountryCode,
|
||||
business_label -> Varchar,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user