<?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 Version20260124172346 extends AbstractMigration
{
// administrator-message-automations
public const REPORT_ID = 60;
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql(sprintf('UPDATE report SET name = \'Automations\' WHERE id = %d', self::REPORT_ID));
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql(sprintf('UPDATE report SET name = \'Message Automations\' WHERE id = %d', self::REPORT_ID));
}
}