<?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 Version20251125175410 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 customer_comment DROP FOREIGN KEY FK_88A9F6D26C066AFE');
$this->addSql('DROP INDEX IDX_88A9F6D26C066AFE ON customer_comment');
$this->addSql('ALTER TABLE customer_comment DROP target_user_id');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE customer_comment ADD target_user_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE customer_comment ADD CONSTRAINT FK_88A9F6D26C066AFE FOREIGN KEY (target_user_id) REFERENCES user (id) ON DELETE SET NULL');
$this->addSql('CREATE INDEX IDX_88A9F6D26C066AFE ON customer_comment (target_user_id)');
}
}