<?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 Version20220125153310 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('ALTER TABLE plannings_formations DROP FOREIGN KEY FK_73CB876FB11E4946');
$this->addSql('DROP INDEX IDX_73CB876FB11E4946 ON plannings_formations');
$this->addSql('ALTER TABLE plannings_formations CHANGE salles_id salle_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE plannings_formations ADD CONSTRAINT FK_73CB876FDC304035 FOREIGN KEY (salle_id) REFERENCES salles (id)');
$this->addSql('CREATE INDEX IDX_73CB876FDC304035 ON plannings_formations (salle_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE plannings_formations DROP FOREIGN KEY FK_73CB876FDC304035');
$this->addSql('DROP INDEX IDX_73CB876FDC304035 ON plannings_formations');
$this->addSql('ALTER TABLE plannings_formations CHANGE salle_id salles_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE plannings_formations ADD CONSTRAINT FK_73CB876FB11E4946 FOREIGN KEY (salles_id) REFERENCES salles (id)');
$this->addSql('CREATE INDEX IDX_73CB876FB11E4946 ON plannings_formations (salles_id)');
}
}