mirror of
https://github.com/vr-payment/shopware-6.git
synced 2026-06-04 10:53:18 +00:00
61 lines
1.9 KiB
PHP
61 lines
1.9 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace VRPaymentPayment\Migration;
|
|
|
|
use Doctrine\DBAL\Connection;
|
|
use Shopware\Core\Framework\Migration\MigrationStep;
|
|
|
|
/**
|
|
* Class Migration1590156974PaymentMethodConfigurationEntity
|
|
*
|
|
* @package VRPaymentPayment\Migration
|
|
*/
|
|
class Migration1590156974PaymentMethodConfigurationEntity extends MigrationStep {
|
|
/**
|
|
* get creation timestamp
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getCreationTimestamp(): int
|
|
{
|
|
return 1590156974;
|
|
}
|
|
|
|
/**
|
|
* update non-destructive changes
|
|
*
|
|
* @param \Doctrine\DBAL\Connection $connection
|
|
* @throws \Doctrine\DBAL\DBALException
|
|
*/
|
|
public function update(Connection $connection): void
|
|
{
|
|
$connection->executeStatement('
|
|
CREATE TABLE IF NOT EXISTS `vrpayment_payment_method_configuration` (
|
|
`id` BINARY(16) NOT NULL,
|
|
`data` JSON NOT NULL,
|
|
`payment_method_configuration_id` INT UNSIGNED NOT NULL,
|
|
`payment_method_id` BINARY(16) NOT NULL,
|
|
`sort_order` TINYINT UNSIGNED NOT NULL,
|
|
`space_id` INT UNSIGNED NOT NULL,
|
|
`state` VARCHAR(255) NOT NULL,
|
|
`created_at` DATETIME(3) NOT NULL,
|
|
`updated_at` DATETIME(3) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `payment_method_configuration_id_space_id_UNIQUE` (`payment_method_configuration_id`,`space_id`),
|
|
KEY `fk.vrp_payment_method_configuration.payment_method_id` (`payment_method_id`),
|
|
CONSTRAINT `fk.vrp_payment_method_configuration.payment_method_id` FOREIGN KEY (`payment_method_id`) REFERENCES `payment_method` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
');
|
|
}
|
|
|
|
/**
|
|
* update destructive changes
|
|
*
|
|
* @param \Doctrine\DBAL\Connection $connection
|
|
*/
|
|
public function updateDestructive(Connection $connection): void
|
|
{
|
|
// implement update destructive
|
|
}
|
|
}
|