From 996b3f246bb9980136271115a355f326837c3da3 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 6 Jan 2022 17:21:11 +1100 Subject: [PATCH] Add Apple Domain Verification to Stripe Gateways --- ...31_add_app_domain_id_to_gateways_table.php | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 database/migrations/2022_01_06_061231_add_app_domain_id_to_gateways_table.php diff --git a/database/migrations/2022_01_06_061231_add_app_domain_id_to_gateways_table.php b/database/migrations/2022_01_06_061231_add_app_domain_id_to_gateways_table.php new file mode 100644 index 000000000000..23c8757e6bff --- /dev/null +++ b/database/migrations/2022_01_06_061231_add_app_domain_id_to_gateways_table.php @@ -0,0 +1,39 @@ +fields = '{"account_id":"", "appleDomainVerification":""}'; + $stripe_connect->save(); + + } + + $stripe_connect = Gateway::find(20); + $stripe_connect->fields = '{"account_id":"", "appleDomainVerification":""}'; + $stripe_connect->save(); + + } + + /** + * Reverse the migrations. + * + * @return void + */ + +}