<?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 Version20220424014407 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 rayon DROP FOREIGN KEY FK_D5E5BC3C53C59D72');
$this->addSql('DROP INDEX IDX_D5E5BC3C53C59D72 ON rayon');
$this->addSql('ALTER TABLE rayon CHANGE responsable_id user_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE rayon ADD CONSTRAINT FK_D5E5BC3CA76ED395 FOREIGN KEY (user_id) REFERENCES `user` (id)');
$this->addSql('CREATE INDEX IDX_D5E5BC3CA76ED395 ON rayon (user_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE rayon DROP FOREIGN KEY FK_D5E5BC3CA76ED395');
$this->addSql('DROP INDEX IDX_D5E5BC3CA76ED395 ON rayon');
$this->addSql('ALTER TABLE rayon CHANGE user_id responsable_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE rayon ADD CONSTRAINT FK_D5E5BC3C53C59D72 FOREIGN KEY (responsable_id) REFERENCES user (id)');
$this->addSql('CREATE INDEX IDX_D5E5BC3C53C59D72 ON rayon (responsable_id)');
}
}