<?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 Version20220908115919 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2171');
$this->addSql('UPDATE legal_entity_order SET `legal_entity_id` = 197 WHERE `id` = 1654');
$this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4894');
$this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2172');
$this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4895');
$this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2169');
$this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4892');
$this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2170');
$this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4893');
$this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2168');
$this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4891');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}