migrations/Version20191203081934.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 Version20191203081934 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 non_member_contract ADD staff_request_id INT DEFAULT NULL');
  16.         $this->addSql('ALTER TABLE non_member_contract ADD CONSTRAINT FK_89BEA16FA42CA874 FOREIGN KEY (staff_request_id) REFERENCES legal_entity_staff_request (id)');
  17.         $this->addSql('CREATE INDEX IDX_89BEA16FA42CA874 ON non_member_contract (staff_request_id)');
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.         // this down() migration is auto-generated, please modify it to your needs
  22.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  23.         $this->addSql('ALTER TABLE non_member_contract DROP FOREIGN KEY FK_89BEA16FA42CA874');
  24.         $this->addSql('DROP INDEX IDX_89BEA16FA42CA874 ON non_member_contract');
  25.         $this->addSql('ALTER TABLE non_member_contract DROP staff_request_id');
  26.     }
  27. }