migrations/Version20200617202650.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use App\Entity\LegalEntity\Contract\LicenseAgreement;
  5. use Doctrine\DBAL\Schema\Schema;
  6. use Doctrine\Migrations\AbstractMigration;
  7. /**
  8.  * Auto-generated Migration: Please modify to your needs!
  9.  */
  10. final class Version20200617202650 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 contract_signatory SET `for` = :new WHERE `for` LIKE :old', [
  16.             'old' => '%LicenseAgreement',
  17.             'new' => LicenseAgreement::class,
  18.         ]);
  19.     }
  20.     public function down(Schema $schema): void
  21.     {
  22.         // this down() migration is auto-generated, please modify it to your needs
  23.     }
  24. }