migrations/Version20220415100538.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 Version20220415100538 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 formations_thematics (id INT AUTO_INCREMENT NOT NULL, formation_id INT DEFAULT NULL, label VARCHAR(255) DEFAULT NULL, is_enabled TINYINT(1) DEFAULT NULL, INDEX IDX_9CCBACF05200282E (formation_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE registrations_formations_thematics (registrations_id INT NOT NULL, formations_thematics_id INT NOT NULL, INDEX IDX_87A0899C8279080 (registrations_id), INDEX IDX_87A0899CDD815EA1 (formations_thematics_id), PRIMARY KEY(registrations_id, formations_thematics_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE registrations_companies_types (id INT AUTO_INCREMENT NOT NULL, label VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('CREATE TABLE registrations_professions (id INT AUTO_INCREMENT NOT NULL, label VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  22.         $this->addSql('ALTER TABLE formations_thematics ADD CONSTRAINT FK_9CCBACF05200282E FOREIGN KEY (formation_id) REFERENCES formations (id)');
  23.         $this->addSql('ALTER TABLE registrations_formations_thematics ADD CONSTRAINT FK_87A0899C8279080 FOREIGN KEY (registrations_id) REFERENCES registrations (id) ON DELETE CASCADE');
  24.         $this->addSql('ALTER TABLE registrations_formations_thematics ADD CONSTRAINT FK_87A0899CDD815EA1 FOREIGN KEY (formations_thematics_id) REFERENCES formations_thematics (id) ON DELETE CASCADE');
  25.         $this->addSql('ALTER TABLE formations ADD has_registration TINYINT(1) DEFAULT NULL');
  26.         $this->addSql('ALTER TABLE registrations ADD profession_id INT DEFAULT NULL, ADD company_id INT DEFAULT NULL, ADD formation_id INT DEFAULT NULL, ADD date DATETIME DEFAULT NULL, DROP profession, DROP company');
  27.         $this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E7FDEF8996 FOREIGN KEY (profession_id) REFERENCES registrations_professions (id)');
  28.         $this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E7979B1AD6 FOREIGN KEY (company_id) REFERENCES registrations_companies_types (id)');
  29.         $this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E75200282E FOREIGN KEY (formation_id) REFERENCES formations (id)');
  30.         $this->addSql('CREATE INDEX IDX_53DE51E7FDEF8996 ON registrations (profession_id)');
  31.         $this->addSql('CREATE INDEX IDX_53DE51E7979B1AD6 ON registrations (company_id)');
  32.         $this->addSql('CREATE INDEX IDX_53DE51E75200282E ON registrations (formation_id)');
  33.     }
  34.     public function down(Schema $schema): void
  35.     {
  36.         // this down() migration is auto-generated, please modify it to your needs
  37.         $this->addSql('ALTER TABLE registrations_formations_thematics DROP FOREIGN KEY FK_87A0899CDD815EA1');
  38.         $this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E7979B1AD6');
  39.         $this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E7FDEF8996');
  40.         $this->addSql('DROP TABLE formations_thematics');
  41.         $this->addSql('DROP TABLE registrations_formations_thematics');
  42.         $this->addSql('DROP TABLE registrations_companies_types');
  43.         $this->addSql('DROP TABLE registrations_professions');
  44.         $this->addSql('ALTER TABLE formations DROP has_registration');
  45.         $this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E75200282E');
  46.         $this->addSql('DROP INDEX IDX_53DE51E7FDEF8996 ON registrations');
  47.         $this->addSql('DROP INDEX IDX_53DE51E7979B1AD6 ON registrations');
  48.         $this->addSql('DROP INDEX IDX_53DE51E75200282E ON registrations');
  49.         $this->addSql('ALTER TABLE registrations ADD profession VARCHAR(255) DEFAULT NULL, ADD company VARCHAR(255) DEFAULT NULL, DROP profession_id, DROP company_id, DROP formation_id, DROP date');
  50.     }
  51. }