<?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 Version20220601072749 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` = "ECHA-640cb8f9-b910-461a-a56e-b70e36bfc0b2" WHERE `id` LIKE 6');
$this->addSql('UPDATE legal_entity SET `uuid` = "ECHA-7b7a44ad-fb39-4b6b-8fa6-e204ac255056" WHERE `id` LIKE 7');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}