<?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 Version20221108090824 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 legal_entity SET `uuid` = 'IUC5-64821979-889c-40a2-8295-8b6b708265ca' WHERE `id` = 94");
$this->addSql("UPDATE `legal_entity` SET `name` = 'INEOS Manufacturing Belgium NV' WHERE `legal_entity`.`id` = 94");
$this->addSql("UPDATE `legal_entity` SET `echa_name` = 'INEOS Manufacturing Belgium NV' WHERE `legal_entity`.`id` = 94");
$this->addSql("UPDATE `legal_entity` SET `address_street1` = 'Scheldelaan 482' WHERE `legal_entity`.`id` = 94");
$this->addSql('UPDATE `legal_entity` SET `address_street2` = NULL WHERE `legal_entity`.`id` = 94');
$this->addSql("UPDATE `legal_entity` SET `address_city` = 'Antwerpen' WHERE `legal_entity`.`id` = 94");
$this->addSql("UPDATE `legal_entity` SET `address_zip_code` = '2040' WHERE `legal_entity`.`id` = 94");
$this->addSql("UPDATE `legal_entity` SET `address_country` = 'BE' WHERE `legal_entity`.`id` = 94");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}