<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* 商品テーブルに非表示フラグを追加
*/
final class Version20260107182626 extends AbstractMigration
{
public function getDescription(): string
{
return '商品テーブルにis_hiddenカラムを追加し、既存の非公開商品を移行';
}
public function up(Schema $schema): void
{
// is_hiddenカラムを追加(デフォルトはfalse)
$this->addSql('ALTER TABLE dtb_product ADD is_hidden TINYINT(1) DEFAULT 0');
}
public function down(Schema $schema): void
{
// is_hiddenカラムを削除
$this->addSql('ALTER TABLE dtb_product DROP COLUMN is_hidden');
}
}