migrations/Version20190215094109.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 Version20190215094109 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_staff_request ADD assigned_by_id INT DEFAULT NULL, ADD assigned_to_id INT DEFAULT NULL, ADD assigned_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:carbondatetime)\'');
  16.         $this->addSql('ALTER TABLE legal_entity_staff_request ADD CONSTRAINT FK_A6596A496E6F1246 FOREIGN KEY (assigned_by_id) REFERENCES security_user (id)');
  17.         $this->addSql('ALTER TABLE legal_entity_staff_request ADD CONSTRAINT FK_A6596A49F4BD7827 FOREIGN KEY (assigned_to_id) REFERENCES security_user (id)');
  18.         $this->addSql('CREATE INDEX IDX_A6596A496E6F1246 ON legal_entity_staff_request (assigned_by_id)');
  19.         $this->addSql('CREATE INDEX IDX_A6596A49F4BD7827 ON legal_entity_staff_request (assigned_to_id)');
  20.     }
  21.     public function down(Schema $schema): void
  22.     {
  23.         // this down() migration is auto-generated, please modify it to your needs
  24.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  25.         $this->addSql('ALTER TABLE legal_entity_staff_request DROP FOREIGN KEY FK_A6596A496E6F1246');
  26.         $this->addSql('ALTER TABLE legal_entity_staff_request DROP FOREIGN KEY FK_A6596A49F4BD7827');
  27.         $this->addSql('DROP INDEX IDX_A6596A496E6F1246 ON legal_entity_staff_request');
  28.         $this->addSql('DROP INDEX IDX_A6596A49F4BD7827 ON legal_entity_staff_request');
  29.         $this->addSql('ALTER TABLE legal_entity_staff_request DROP assigned_by_id, DROP assigned_to_id, DROP assigned_at');
  30.     }
  31. }