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:
Narayan Bhat
2023-04-11 17:25:29 +05:30
committed by GitHub
parent 29da1dfa50
commit 6188d51579
40 changed files with 631 additions and 52 deletions

View File

@ -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,
}
}