<?php
declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210617071024 extends AbstractMigration
{
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('
UPDATE `legal_entity_order_invoice` SET `date` = \'2014-01-30\' WHERE `id` = 7902;
UPDATE `legal_entity_order_invoice` SET `date` = \'2018-07-24\' WHERE `id` = 8912;
UPDATE `legal_entity_order_invoice` SET `date` = \'2018-07-24\' WHERE `id` = 8913;
');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}