Skip to content

Commit

Permalink
Update Upgrade-6.2.1.php
Browse files Browse the repository at this point in the history
  • Loading branch information
GytisZum authored Jun 25, 2024
1 parent f103a6f commit 162eb30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions upgrade/Upgrade-6.2.1.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
function upgrade_module_6_2_1(Mollie $module): bool
{
$isTableDeleted = Db::getInstance()->execute('DROP TABLE IF EXISTS `' . _DB_PREFIX_ . 'mol_payment_method_issuer`');
$isSandboxConfigDeleted = Configuration::deleteByName('MOLLIE_SANDBOX_ISSUERS');
$isProdConfigDeleted = Configuration::deleteByName('MOLLIE_PRODUCTION_ISSUERS');
Configuration::deleteByName('MOLLIE_SANDBOX_ISSUERS');
Configuration::deleteByName('MOLLIE_PRODUCTION_ISSUERS');

return $isTableDeleted && $isSandboxConfigDeleted && $isProdConfigDeleted;
}
return $isTableDeleted;
}

0 comments on commit 162eb30

Please sign in to comment.