Release 7.1.0

This commit is contained in:
andrewrowanwallee
2025-09-10 13:49:39 +02:00
parent 88e706b44f
commit aa4aa15c54
191 changed files with 0 additions and 25741 deletions
@@ -1,48 +0,0 @@
<?php declare(strict_types=1);
namespace VRPaymentPayment\Migration;
use Doctrine\DBAL\Connection;
use Shopware\Core\Framework\Migration\MigrationStep;
/**
* Class Migration1590646356TransactionEntity
*
* @package VRPaymentPayment\Migration
*/
class Migration1590646356TransactionEntity extends MigrationStep {
/**
* get creation timestamp
*
* @return int
*/
public function getCreationTimestamp(): int
{
return 1590646356;
}
/**
* update non-destructive changes
*
* @param \Doctrine\DBAL\Connection $connection
*/
public function update(Connection $connection): void
{
try {
$connection->executeStatement('ALTER TABLE `vrpayment_transaction` ADD COLUMN `confirmation_email_sent` TINYINT(1) NOT NULL DEFAULT 0 AFTER `id`;');
}catch (\Exception $exception){
// column probably exists
}
}
/**
* update destructive changes
*
* @param \Doctrine\DBAL\Connection $connection
*/
public function updateDestructive(Connection $connection): void
{
// implement update destructive
}
}