<?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 Version20231124154855 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 category ADD disabled_at DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE product ADD disabled_at DATETIME DEFAULT NULL');
$this->addSql('DELETE pc FROM product_category pc
JOIN product p ON pc.product_id = p.id
JOIN category c ON pc.category_id = c.id
WHERE c.status = 0 OR p.status = 0
OR c.deleted_at IS NOT NULL OR p.deleted_at IS NOT NULL
OR pc.deleted_at IS NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE category DROP disabled_at');
$this->addSql('ALTER TABLE product DROP disabled_at');
}
}