<?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 Version20250202141222 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 catalogue_import ADD sort_a INT DEFAULT NULL, ADD sort_b INT DEFAULT NULL, ADD sort_c INT DEFAULT NULL, ADD sort_d INT DEFAULT NULL, ADD sort_e INT DEFAULT NULL, ADD sort_f INT DEFAULT NULL, ADD sort_g INT DEFAULT NULL, ADD sort_h INT DEFAULT NULL, ADD sort_i INT DEFAULT NULL, ADD sort_j INT DEFAULT NULL, ADD sort_k INT DEFAULT NULL, ADD sort_l INT DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE catalogue_import DROP sort_a, DROP sort_b, DROP sort_c, DROP sort_d, DROP sort_e, DROP sort_f, DROP sort_g, DROP sort_h, DROP sort_i, DROP sort_j, DROP sort_k, DROP sort_l');
}
}