migrations/Version20221223112740.php line 1

  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  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 Version20221223112740 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('ALTER TABLE wiki_post_category DROP FOREIGN KEY FK_CD92DF8D4B89032C');
  19.         $this->addSql('ALTER TABLE wiki_post_category DROP FOREIGN KEY FK_CD92DF8D12469DE2');
  20.         $this->addSql('DROP INDEX `primary` ON wiki_post_category');
  21.         $this->addSql('ALTER TABLE wiki_post_category ADD CONSTRAINT FK_CD92DF8D4B89032C FOREIGN KEY (post_id) REFERENCES wiki_post (id)');
  22.         $this->addSql('ALTER TABLE wiki_post_category ADD CONSTRAINT FK_CD92DF8D12469DE2 FOREIGN KEY (category_id) REFERENCES wiki_category (id)');
  23.         $this->addSql('ALTER TABLE wiki_post_category ADD PRIMARY KEY (post_id, category_id)');
  24.         $this->addSql('ALTER TABLE wiki_post_tag DROP FOREIGN KEY FK_B1083F3F4B89032C');
  25.         $this->addSql('ALTER TABLE wiki_post_tag DROP FOREIGN KEY FK_B1083F3FBAD26311');
  26.         $this->addSql('DROP INDEX `primary` ON wiki_post_tag');
  27.         $this->addSql('ALTER TABLE wiki_post_tag ADD CONSTRAINT FK_B1083F3F4B89032C FOREIGN KEY (post_id) REFERENCES wiki_post (id)');
  28.         $this->addSql('ALTER TABLE wiki_post_tag ADD CONSTRAINT FK_B1083F3FBAD26311 FOREIGN KEY (tag_id) REFERENCES wiki_tag (id)');
  29.         $this->addSql('ALTER TABLE wiki_post_tag ADD PRIMARY KEY (post_id, tag_id)');
  30.     }
  31.     public function down(Schema $schema): void
  32.     {
  33.         // this down() migration is auto-generated, please modify it to your needs
  34.         $this->addSql('ALTER TABLE wiki_post_category DROP FOREIGN KEY FK_CD92DF8D4B89032C');
  35.         $this->addSql('ALTER TABLE wiki_post_category DROP FOREIGN KEY FK_CD92DF8D12469DE2');
  36.         $this->addSql('DROP INDEX `PRIMARY` ON wiki_post_category');
  37.         $this->addSql('ALTER TABLE wiki_post_category ADD CONSTRAINT FK_CD92DF8D4B89032C FOREIGN KEY (post_id) REFERENCES wiki_category (id)');
  38.         $this->addSql('ALTER TABLE wiki_post_category ADD CONSTRAINT FK_CD92DF8D12469DE2 FOREIGN KEY (category_id) REFERENCES wiki_post (id)');
  39.         $this->addSql('ALTER TABLE wiki_post_category ADD PRIMARY KEY (category_id, post_id)');
  40.         $this->addSql('ALTER TABLE wiki_post_tag DROP FOREIGN KEY FK_B1083F3F4B89032C');
  41.         $this->addSql('ALTER TABLE wiki_post_tag DROP FOREIGN KEY FK_B1083F3FBAD26311');
  42.         $this->addSql('DROP INDEX `PRIMARY` ON wiki_post_tag');
  43.         $this->addSql('ALTER TABLE wiki_post_tag ADD CONSTRAINT FK_B1083F3F4B89032C FOREIGN KEY (post_id) REFERENCES wiki_tag (id)');
  44.         $this->addSql('ALTER TABLE wiki_post_tag ADD CONSTRAINT FK_B1083F3FBAD26311 FOREIGN KEY (tag_id) REFERENCES wiki_post (id)');
  45.         $this->addSql('ALTER TABLE wiki_post_tag ADD PRIMARY KEY (tag_id, post_id)');
  46.     }
  47. }