migrations/Version20211213083313.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use App\Doctrine\Migrations\AbstractMigration;
  5. use App\Entity\LegalEntity\Contract\Amendment;
  6. use Doctrine\DBAL\Schema\Schema;
  7. /**
  8.  * Auto-generated Migration: Please modify to your needs!
  9.  */
  10. final class Version20211213083313 extends AbstractMigration
  11. {
  12.     public function up(Schema $schema): void
  13.     {
  14.         // this up() migration is auto-generated, please modify it to your needs
  15.         $this->addSql("UPDATE `legal_entity_contract` SET `document_date` = '2019-11-08' WHERE `legal_entity_contract`.`id` = 31346");
  16.         $this
  17.             ->addCommand(['app:manual:amendments:generate'Amendment::TYPE_SCHEDULE_431346]);
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.         // this down() migration is auto-generated, please modify it to your needs
  22.     }
  23. }