migrations/2022/02/Version20220222103617.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use App\Entity\LeadRegistrant\Agreement;
  5. use App\Entity\LegalEntity\Contract\LicenseAgreement;
  6. use Doctrine\DBAL\Schema\Schema;
  7. use Doctrine\Migrations\AbstractMigration;
  8. /**
  9.  * Auto-generated Migration: Please modify to your needs!
  10.  */
  11. final class Version20220222103617 extends AbstractMigration
  12. {
  13.     public function getDescription(): string
  14.     {
  15.         return '';
  16.     }
  17.     public function up(Schema $schema): void
  18.     {
  19.         // this up() migration is auto-generated, please modify it to your needs
  20.         $this->addSql('UPDATE contract_signatory SET `for` = :new WHERE `for` LIKE :old', [
  21.             'old' => '%LicenseAgreement',
  22.             'new' => LicenseAgreement::class,
  23.         ]);
  24.         $this->addSql('UPDATE contract_signatory SET `for` = :new WHERE `for` LIKE :old', [
  25.             'old' => '%LeadRegistrant%',
  26.             'new' => Agreement::class,
  27.         ]);
  28.     }
  29.     public function down(Schema $schema): void
  30.     {
  31.         // this down() migration is auto-generated, please modify it to your needs
  32.     }
  33. }