<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260710120000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Compatibility marker; superseded by the production-safe concurrent index migration.';
}
public function up(Schema $schema): void
{
// Intentionally empty. This version may already be recorded on UAT,
// while production has not run it yet. Keeping the version as a no-op
// prevents a deployment from rewriting the measurements table.
}
public function down(Schema $schema): void
{
// Intentionally empty; this marker never changes the database schema.
}
}