migrations/Version20211108101907.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 Version20211108101907 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('DROP TABLE questionnaire_acronym');
  16.         $this->addSql('ALTER TABLE legal_entity ADD acronym VARCHAR(255) NOT NULL');
  17.     }
  18.     public function down(Schema $schema): void
  19.     {
  20.         // this down() migration is auto-generated, please modify it to your needs
  21.         $this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
  22.         $this->addSql('CREATE TABLE questionnaire_acronym (id INT AUTO_INCREMENT NOT NULL, entity_id INT DEFAULT NULL, acronym VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, created_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', UNIQUE INDEX UNIQ_EB1A65681257D5D (entity_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  23.         $this->addSql('ALTER TABLE questionnaire_acronym ADD CONSTRAINT FK_EB1A65681257D5D FOREIGN KEY (entity_id) REFERENCES legal_entity (id)');
  24.         $this->addSql('ALTER TABLE legal_entity DROP acronym');
  25.     }
  26. }