<?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 Version20241015075510 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE `dp_operational_unit` SET `op_ut_name` = 'SMT A side' WHERE `dp_operational_unit`.`op_ut_id` = 30;");
$this->addSql("UPDATE `dp_operational_unit` SET `op_ut_name` = 'SMT B side' WHERE `dp_operational_unit`.`op_ut_id` = 29;");
}
public function down(Schema $schema): void
{
$this->addSql("UPDATE `dp_operational_unit` SET `op_ut_name` = 'SMT 2' WHERE `dp_operational_unit`.`op_ut_id` = 30;");
$this->addSql("UPDATE `dp_operational_unit` SET `op_ut_name` = 'SMT 1' WHERE `dp_operational_unit`.`op_ut_id` = 29;");
}
}