<?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 Version20240927093136 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("UPDATE plg_productoption_dtb_optioncategory SET disable_flg = 1, init_flg = 1, hidden_flg = 1 WHERE id = 16");
$this->addSql("UPDATE plg_productoption_dtb_optioncategory SET config = '{\"label\":\"そのまま使用する\"}' WHERE id = 17");
$this->addSql("UPDATE plg_productoption_dtb_optioncategory SET config = '{\"label\":\"データ変換を依頼する\"}' WHERE id = 18");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}