migrations/Version20211028081714.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 Version20211028081714 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 uses_questionnaire ADD CONSTRAINT FK_50D33B1712469DE2 FOREIGN KEY (category_id) REFERENCES substance_category (id)');
  16.         $this->addSql('ALTER TABLE uses_questionnaire ADD CONSTRAINT FK_50D33B1781257D5D FOREIGN KEY (entity_id) REFERENCES legal_entity (id)');
  17.         $this->addSql('CREATE INDEX IDX_50D33B1712469DE2 ON uses_questionnaire (category_id)');
  18.         $this->addSql('CREATE INDEX IDX_50D33B1781257D5D ON uses_questionnaire (entity_id)');
  19.         $this->addSql('CREATE TABLE export_questionnaires (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, created_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:carbondatetime)\', INDEX IDX_7978427EA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE export_questionnaires ADD CONSTRAINT FK_7978427EA76ED395 FOREIGN KEY (user_id) REFERENCES security_user (id)');
  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 uses_questionnaire DROP FOREIGN KEY FK_50D33B1712469DE2');
  27.         $this->addSql('ALTER TABLE uses_questionnaire DROP FOREIGN KEY FK_50D33B1781257D5D');
  28.         $this->addSql('DROP INDEX IDX_50D33B1712469DE2 ON uses_questionnaire');
  29.         $this->addSql('DROP INDEX IDX_50D33B1781257D5D ON uses_questionnaire');
  30.         $this->addSql('DROP TABLE export_questionnaires');
  31.     }
  32. }