Skip to content

Commit 576950e

Browse files
committed
Migratuion fix
1 parent e33a196 commit 576950e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/database/migrations/2025_11_07_153308_backfill_account_vat_settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function up(): void
2727
foreach ($stripeAccounts as $accountStripePlatform) {
2828
$stripeCountry = $accountStripePlatform->stripe_account_details['country'] ?? null;
2929

30-
if ($stripeCountry === null) {
30+
if ($stripeCountry === null || $accountStripePlatform->account === null) {
3131
continue;
3232
}
3333

0 commit comments

Comments
 (0)