<?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 Version20241217091447 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("ALTER TABLE `dp_data_temp` DROP FOREIGN KEY `dp_data_temp_ibfk_5`;");
$this->addSql("ALTER TABLE `dp_data_temp` DROP COLUMN `product_var_id`;");
$this->addSql("ALTER TABLE `dp_data_temp` ADD `hitachi_part_no` VARCHAR(255) NULL AFTER `import_id`;");
}
public function down(Schema $schema): void
{
$this->addSql("ALTER TABLE `dp_data_temp` DROP COLUMN `hitachi_part_no`;");
}
}