<?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 Version20211029124242 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` SET `uuid` = 'ECHA-a0121910-5bdc-48f6-bfa1-70e0c69103cd' WHERE `legal_entity`.`id` = 1344;");
$this->addSql("UPDATE `legal_entity` SET `uuid` = 'ECHA-8e03f45c-d192-47eb-929c-64d30edab3a6' WHERE `legal_entity`.`id` = 487;");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}