Skip to content

Commit

Permalink
Merge branch 'release/2.0.1' into main-6-5
Browse files Browse the repository at this point in the history
  • Loading branch information
hipaybot committed Oct 23, 2023
2 parents a21b420 + cd73033 commit bc6efcd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 2.0.1

- **Fixed** : Fixed MySQL migration script

## Version 2.0.0

- **BREAKING CHANGE** : Added support for Shopware version **6.5**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hipay/hipay-enterprise-shopware-6",
"description": "HiPay enterprise plugin for Shopware 6",
"license": "Apache-2.0",
"version": "2.0.0",
"version": "2.0.1",
"authors": [
{
"email": "support.tpp@hipay.com",
Expand Down
4 changes: 2 additions & 2 deletions src/Migration/Migration1688376458.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public function update(Connection $connection): void
ALTER TABLE `hipay_order`
ADD `order_version_id` BINARY(16) NOT NULL,
ADD `transaction_version_id` BINARY(16) NOT NULL,
DROP CONSTRAINT `fk.hipay_order.order_id`,
DROP CONSTRAINT `fk.hipay_order.transaction_id`;
DROP FOREIGN KEY `fk.hipay_order.order_id`,
DROP FOREIGN KEY `fk.hipay_order.transaction_id`;
SQL;
$connection->executeStatement($sql);

Expand Down

Large diffs are not rendered by default.

0 comments on commit bc6efcd

Please sign in to comment.