migrations/Version20231212092629.php line 1

Open in your IDE?
  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 Version20231212092629 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('CREATE TABLE offer_entry (id INT AUTO_INCREMENT NOT NULL, offer_id INT DEFAULT NULL, date_from DATETIME DEFAULT NULL, date_to DATETIME DEFAULT NULL, note VARCHAR(2048) DEFAULT NULL, INDEX IDX_A80CE09953C674EE (offer_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE offer_entry ADD CONSTRAINT FK_A80CE09953C674EE FOREIGN KEY (offer_id) REFERENCES offer (id)');
  20.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping DROP FOREIGN KEY FK_8DE7C27D53C674EE');
  21.         $this->addSql('DROP INDEX IDX_8DE7C27D53C674EE ON bopartner_profile_offer_mapping');
  22.         $this->addSql('DROP INDEX `primary` ON bopartner_profile_offer_mapping');
  23.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping CHANGE offer_id offer_entry_id INT NOT NULL');
  24.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping ADD CONSTRAINT FK_8DE7C27DC34BF920 FOREIGN KEY (offer_entry_id) REFERENCES offer_entry (id)');
  25.         $this->addSql('CREATE INDEX IDX_8DE7C27DC34BF920 ON bopartner_profile_offer_mapping (offer_entry_id)');
  26.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping ADD PRIMARY KEY (bopartner_profile_id, offer_entry_id)');
  27.         $this->addSql('ALTER TABLE company_profile_offer_mapping DROP FOREIGN KEY FK_DFDC4A4453C674EE');
  28.         $this->addSql('DROP INDEX IDX_DFDC4A4453C674EE ON company_profile_offer_mapping');
  29.         $this->addSql('DROP INDEX `primary` ON company_profile_offer_mapping');
  30.         $this->addSql('ALTER TABLE company_profile_offer_mapping CHANGE offer_id offer_entry_id INT NOT NULL');
  31.         $this->addSql('ALTER TABLE company_profile_offer_mapping ADD CONSTRAINT FK_DFDC4A44C34BF920 FOREIGN KEY (offer_entry_id) REFERENCES offer_entry (id)');
  32.         $this->addSql('CREATE INDEX IDX_DFDC4A44C34BF920 ON company_profile_offer_mapping (offer_entry_id)');
  33.         $this->addSql('ALTER TABLE company_profile_offer_mapping ADD PRIMARY KEY (company_profile_id, offer_entry_id)');
  34.         $this->addSql('ALTER TABLE school_profile_offer_mapping DROP FOREIGN KEY FK_9C8ED68353C674EE');
  35.         $this->addSql('DROP INDEX IDX_9C8ED68353C674EE ON school_profile_offer_mapping');
  36.         $this->addSql('DROP INDEX `primary` ON school_profile_offer_mapping');
  37.         $this->addSql('ALTER TABLE school_profile_offer_mapping CHANGE offer_id offer_entry_id INT NOT NULL');
  38.         $this->addSql('ALTER TABLE school_profile_offer_mapping ADD CONSTRAINT FK_9C8ED683C34BF920 FOREIGN KEY (offer_entry_id) REFERENCES offer_entry (id)');
  39.         $this->addSql('CREATE INDEX IDX_9C8ED683C34BF920 ON school_profile_offer_mapping (offer_entry_id)');
  40.         $this->addSql('ALTER TABLE school_profile_offer_mapping ADD PRIMARY KEY (school_profile_id, offer_entry_id)');
  41.     }
  42.     public function down(Schema $schema): void
  43.     {
  44.         // this down() migration is auto-generated, please modify it to your needs
  45.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping DROP FOREIGN KEY FK_8DE7C27DC34BF920');
  46.         $this->addSql('ALTER TABLE company_profile_offer_mapping DROP FOREIGN KEY FK_DFDC4A44C34BF920');
  47.         $this->addSql('ALTER TABLE school_profile_offer_mapping DROP FOREIGN KEY FK_9C8ED683C34BF920');
  48.         $this->addSql('ALTER TABLE offer_entry DROP FOREIGN KEY FK_A80CE09953C674EE');
  49.         $this->addSql('DROP TABLE offer_entry');
  50.         $this->addSql('DROP INDEX IDX_9C8ED683C34BF920 ON school_profile_offer_mapping');
  51.         $this->addSql('DROP INDEX `PRIMARY` ON school_profile_offer_mapping');
  52.         $this->addSql('ALTER TABLE school_profile_offer_mapping CHANGE offer_entry_id offer_id INT NOT NULL');
  53.         $this->addSql('ALTER TABLE school_profile_offer_mapping ADD CONSTRAINT FK_9C8ED68353C674EE FOREIGN KEY (offer_id) REFERENCES offer (id)');
  54.         $this->addSql('CREATE INDEX IDX_9C8ED68353C674EE ON school_profile_offer_mapping (offer_id)');
  55.         $this->addSql('ALTER TABLE school_profile_offer_mapping ADD PRIMARY KEY (school_profile_id, offer_id)');
  56.         $this->addSql('DROP INDEX IDX_8DE7C27DC34BF920 ON bopartner_profile_offer_mapping');
  57.         $this->addSql('DROP INDEX `PRIMARY` ON bopartner_profile_offer_mapping');
  58.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping CHANGE offer_entry_id offer_id INT NOT NULL');
  59.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping ADD CONSTRAINT FK_8DE7C27D53C674EE FOREIGN KEY (offer_id) REFERENCES offer (id)');
  60.         $this->addSql('CREATE INDEX IDX_8DE7C27D53C674EE ON bopartner_profile_offer_mapping (offer_id)');
  61.         $this->addSql('ALTER TABLE bopartner_profile_offer_mapping ADD PRIMARY KEY (bopartner_profile_id, offer_id)');
  62.         $this->addSql('DROP INDEX IDX_DFDC4A44C34BF920 ON company_profile_offer_mapping');
  63.         $this->addSql('DROP INDEX `PRIMARY` ON company_profile_offer_mapping');
  64.         $this->addSql('ALTER TABLE company_profile_offer_mapping CHANGE offer_entry_id offer_id INT NOT NULL');
  65.         $this->addSql('ALTER TABLE company_profile_offer_mapping ADD CONSTRAINT FK_DFDC4A4453C674EE FOREIGN KEY (offer_id) REFERENCES offer (id)');
  66.         $this->addSql('CREATE INDEX IDX_DFDC4A4453C674EE ON company_profile_offer_mapping (offer_id)');
  67.         $this->addSql('ALTER TABLE company_profile_offer_mapping ADD PRIMARY KEY (company_profile_id, offer_id)');
  68.     }
  69. }