<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220415100538 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$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');
$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');
$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');
$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');
$this->addSql('ALTER TABLE formations_thematics ADD CONSTRAINT FK_9CCBACF05200282E FOREIGN KEY (formation_id) REFERENCES formations (id)');
$this->addSql('ALTER TABLE registrations_formations_thematics ADD CONSTRAINT FK_87A0899C8279080 FOREIGN KEY (registrations_id) REFERENCES registrations (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE registrations_formations_thematics ADD CONSTRAINT FK_87A0899CDD815EA1 FOREIGN KEY (formations_thematics_id) REFERENCES formations_thematics (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE formations ADD has_registration TINYINT(1) DEFAULT NULL');
$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');
$this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E7FDEF8996 FOREIGN KEY (profession_id) REFERENCES registrations_professions (id)');
$this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E7979B1AD6 FOREIGN KEY (company_id) REFERENCES registrations_companies_types (id)');
$this->addSql('ALTER TABLE registrations ADD CONSTRAINT FK_53DE51E75200282E FOREIGN KEY (formation_id) REFERENCES formations (id)');
$this->addSql('CREATE INDEX IDX_53DE51E7FDEF8996 ON registrations (profession_id)');
$this->addSql('CREATE INDEX IDX_53DE51E7979B1AD6 ON registrations (company_id)');
$this->addSql('CREATE INDEX IDX_53DE51E75200282E ON registrations (formation_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE registrations_formations_thematics DROP FOREIGN KEY FK_87A0899CDD815EA1');
$this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E7979B1AD6');
$this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E7FDEF8996');
$this->addSql('DROP TABLE formations_thematics');
$this->addSql('DROP TABLE registrations_formations_thematics');
$this->addSql('DROP TABLE registrations_companies_types');
$this->addSql('DROP TABLE registrations_professions');
$this->addSql('ALTER TABLE formations DROP has_registration');
$this->addSql('ALTER TABLE registrations DROP FOREIGN KEY FK_53DE51E75200282E');
$this->addSql('DROP INDEX IDX_53DE51E7FDEF8996 ON registrations');
$this->addSql('DROP INDEX IDX_53DE51E7979B1AD6 ON registrations');
$this->addSql('DROP INDEX IDX_53DE51E75200282E ON registrations');
$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');
}
}