<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* 新着情報テーブルにTOP表示フラグを追加
*/
final class Version20260107051140 extends AbstractMigration
{
public function getDescription(): string
{
return '新着情報テーブルにTOP表示フラグ(top_display)を追加';
}
public function up(Schema $schema): void
{
// dtb_newsテーブルにtop_displayカラムを追加
$this->addSql('ALTER TABLE dtb_news ADD COLUMN top_display TINYINT(1) DEFAULT 0 NOT NULL');
}
public function down(Schema $schema): void
{
// top_displayカラムを削除
$this->addSql('ALTER TABLE dtb_news DROP COLUMN top_display');
}
}