-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 in PLUG_OPEN/swagpaymentpaypalunified from pt…
…-9189/5.2/migrate-legacy-payment-methods to master * commit 'fd118432b02c208016babcc6418a73d55a3b2f13': NTR - Fix date column in the transaction list PT-9189 - Migrate legacy payments
- Loading branch information
Showing
3 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Resets the plugin Ids of the legacy payment methods | ||
-- If not doing that, the legacy mode would not work | ||
-- anymore after completely deleting the plugin through the plugin manager. | ||
UPDATE s_core_paymentmeans AS payment | ||
SET payment.pluginID = NULL | ||
WHERE payment.name='paypal' | ||
OR payment.name='payment_paypal_installments'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters