migrations/2022/09/Version20220908124248.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220908124248 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 1505 WHERE `id` = 2899');
  18.         $this->addSql('UPDATE legal_entity_order SET `legal_entity_id` = 1505 WHERE `id` = 1724');
  19.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 1505 WHERE `id` = 5622');
  20.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 1505 WHERE `id` = 3195');
  21.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 1505 WHERE `id` = 5918');
  22.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 1505 WHERE `id` = 3198');
  23.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 1505 WHERE `id` = 5921');
  24.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 1505 WHERE `id` = 3197');
  25.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 1505 WHERE `id` = 5920');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.     }
  31. }