migrations/Version20211014073758.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 Version20211014073758 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         $this->addSql('
  14.             UPDATE `substance_definition` SET `in_transfer` = false AND `transfer_id`= null WHERE `id` = 5366;
  15.          ');
  16.         $this->addSql('DELETE FROM `legal_entity_transfer` WHERE `id` = 67');
  17.     }
  18.     public function down(Schema $schema): void
  19.     {
  20.         // this down() migration is auto-generated, please modify it to your needs
  21.     }
  22. }