From cdc054a10f13a29c4eca84ddb414c9258b754a5c Mon Sep 17 00:00:00 2001 From: = Date: Sat, 7 Nov 2020 21:13:21 +1100 Subject: [PATCH] Fixes for migration --- app/Traits/GenerateMigrationResources.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Traits/GenerateMigrationResources.php b/app/Traits/GenerateMigrationResources.php index 4d877f5e4fc0..103fe24057ea 100644 --- a/app/Traits/GenerateMigrationResources.php +++ b/app/Traits/GenerateMigrationResources.php @@ -963,8 +963,8 @@ trait GenerateMigrationResources 'gateway_key' => $this->getGatewayKeyById($account_gateway->gateway_id), 'accepted_credit_cards' => $account_gateway->accepted_credit_cards, 'require_cvv' => $account_gateway->require_cvv, - 'show_billing_address' => $account_gateway->show_billing_address, - 'show_shipping_address' => $account_gateway->show_shipping_address, + 'require_billing_address' => $account_gateway->show_billing_address, + 'require_shipping_address' => $account_gateway->show_shipping_address, 'update_details' => $account_gateway->update_details, 'config' => Crypt::decrypt($account_gateway->config), 'fees_and_limits' => $this->transformFeesAndLimits($gateway_type_id),