migrations/Version20211214114350.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 Doctrine\DBAL\Schema\Schema;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20211214114350 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  15.         $this->addSql('ALTER TABLE legal_entity_contract ADD lead_registrant_id INT DEFAULT NULL, ADD notification_sent DATETIME DEFAULT NULL COMMENT \'(DC2Type:carbondatetime)\', ADD remarks LONGTEXT DEFAULT NULL, ADD signatory_name LONGTEXT DEFAULT NULL, ADD signatory_job LONGTEXT DEFAULT NULL');
  16.         $this->addSql('ALTER TABLE legal_entity_contract ADD CONSTRAINT FK_465E8549E667FC FOREIGN KEY (lead_registrant_id) REFERENCES lead_registrant (id)');
  17.         $this->addSql('CREATE INDEX IDX_465E8549E667FC ON legal_entity_contract (lead_registrant_id)');
  18.         $this->addSql('INSERT INTO legal_entity_contract (lead_registrant_id, accepted_by_id, accepted, accepted_ip, accepted_at, notification_sent, remarks, signatory_name, signatory_job, created_at, updated_at, file_name, file_path, file_mime_type, file_size, file_timestamp, dtype, acceptance_required, force_acceptance, `type`) SELECT lead_registrant_id, accepted_by_id, accepted, accepted_ip, accepted_at, notification_sent, remarks, signatory_name, signatory_job, created_at, updated_at, file_name, file_path, file_mime_type, file_size, file_timestamp, "agreement", false, false, "lead-registrant" FROM lead_registrant_agreement');
  19.         $this
  20.             ->addCommand(['app:fix:sief-853']);
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  26.         $this->addSql('ALTER TABLE legal_entity_contract DROP FOREIGN KEY FK_465E8549E667FC');
  27.         $this->addSql('DROP INDEX IDX_465E8549E667FC ON legal_entity_contract');
  28.         $this->addSql('ALTER TABLE legal_entity_contract DROP lead_registrant_id, DROP notification_sent, DROP remarks, DROP signatory_name, DROP signatory_job');
  29.     }
  30. }