mirror of
https://github.com/vr-payment/shopware-6.git
synced 2026-06-04 19:03:01 +00:00
49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
<?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_tmp` 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
|
|
}
|
|
}
|