migrations/2022/09/Version20220908115919.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 Version20220908115919 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2171');
  19.         $this->addSql('UPDATE legal_entity_order SET `legal_entity_id` = 197 WHERE `id` = 1654');
  20.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4894');
  21.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2172');
  22.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4895');
  23.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2169');
  24.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4892');
  25.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2170');
  26.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4893');
  27.         $this->addSql('UPDATE substance_definition SET `legal_entity_id` = 197 WHERE `id` = 2168');
  28.         $this->addSql('UPDATE legal_entity_order_line SET `legal_entity_id` = 197 WHERE `id` = 4891');
  29.     }
  30.     public function down(Schema $schema): void
  31.     {
  32.         // this down() migration is auto-generated, please modify it to your needs
  33.     }
  34. }