<?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 Version20260210082331 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add execution_log column to dtb_index_command_log table';
}
public function up(Schema $schema): void
{
$this->addSql("ALTER TABLE dtb_index_command_log ADD execution_log TEXT NULL AFTER error_log");
}
public function down(Schema $schema): void
{
$this->addSql("ALTER TABLE dtb_index_command_log DROP COLUMN execution_log");
}
}