<?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 Version20250130055950 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('CREATE INDEX idx_last_active_skipped ON creator (last_active_at, skipped_at)');
}
public function down(Schema $schema): void
{
$this->addSql('DROP INDEX idx_last_active_skipped ON creator');
}
}